From b22b6804903e1e8e0e51fd8c78d928f0204672b5 Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Fri, 28 Sep 2012 05:35:12 +0000 Subject: - added some function to contacs loading git-svn-id: http://svn.miranda-ng.org/main/trunk@1697 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Skype/src/skype_subclassing.cpp | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) (limited to 'protocols/Skype/src/skype_subclassing.cpp') 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 -- cgit v1.2.3