diff options
author | George Hazan <george.hazan@gmail.com> | 2012-12-09 20:56:06 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-12-09 20:56:06 +0000 |
commit | 9191a0aefc5213a44bb2f6fbffd732771b4e0264 (patch) | |
tree | 43a98f22f87a2b0f9039a3a5a5fdad43c3ab6dc6 /protocols/Skype/src/skype_subclassing.cpp | |
parent | f3aa4bd3f0283c8a0421fb82b6bdc17ea73f7454 (diff) |
- added 64 bit config;
- password storage fixed;
- bunch of crash fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@2708 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_subclassing.cpp')
-rw-r--r-- | protocols/Skype/src/skype_subclassing.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/protocols/Skype/src/skype_subclassing.cpp b/protocols/Skype/src/skype_subclassing.cpp index 0058f0a5a5..5e63c5d553 100644 --- a/protocols/Skype/src/skype_subclassing.cpp +++ b/protocols/Skype/src/skype_subclassing.cpp @@ -117,8 +117,7 @@ void CAccount::BlockWhileLoggingOut() bool CAccount::IsOnline()
{
- return this->isLoggedIn;
- //(CAccount::STATUS)this->GetUintProp(CAccount::P_STATUS) == Account::LOGGED_IN;
+ return (this == NULL) ? false : this->isLoggedIn;
}
// CContactGroup
|