diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-09-28 05:35:12 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-09-28 05:35:12 +0000 |
commit | b22b6804903e1e8e0e51fd8c78d928f0204672b5 (patch) | |
tree | f369ac01abb576c2b1cb1798a29de166b28b7894 /protocols/Skype/src/skype_subclassing.cpp | |
parent | f67a19f8cae9d4532e908a75b9f921cfdc596f54 (diff) |
- added some function to contacs loading
git-svn-id: http://svn.miranda-ng.org/main/trunk@1697 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_subclassing.cpp')
-rw-r--r-- | protocols/Skype/src/skype_subclassing.cpp | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_subclassing.cpp b/protocols/Skype/src/skype_subclassing.cpp index 0de069a243..1c067f4c3a 100644 --- a/protocols/Skype/src/skype_subclassing.cpp +++ b/protocols/Skype/src/skype_subclassing.cpp @@ -1,6 +1,6 @@ #include "skype_subclassing.h" -Account* CSkype::newAccount(int oid) +CAccount* CSkype::newAccount(int oid) { return new CAccount(oid, this); } @@ -30,7 +30,7 @@ void CAccount::OnChange(int prop) } }
} -}; +} void CAccount::BlockWhileLoggingIn() { @@ -42,4 +42,21 @@ void CAccount::BlockWhileLoggingOut() { while ( !this->isLoggedOut) Sleep(1); -};
\ No newline at end of file +} + +CContactGroup::CContactGroup(unsigned int oid, SERootObject* root) : ContactGroup(oid, root) +{ +} + +void CContactGroup::OnChange(const ContactRef& contact) +{ +} + + +CContact::CContact(unsigned int oid, SERootObject* root) : Contact(oid, root) +{ +} + +void CContact::OnChange(int prop) +{ +}
\ No newline at end of file |