diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-09-30 15:10:33 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-09-30 15:10:33 +0000 |
commit | 75fe175886ceca31d4cade1c067de7b0e1e30d87 (patch) | |
tree | a12a99e1fe56fe7ee321af925bc102b92382ba1d /protocols/Skype/src/skype_subclassing.cpp | |
parent | 5af310dabaed35bdb1d58a6f2eb393d1cece51ef (diff) |
- conatcts funcs moved into skype_contacts.cpp
- added settings functions Set*
- first approach to load contact list
- start skype runtime on startup
git-svn-id: http://svn.miranda-ng.org/main/trunk@1731 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_subclassing.cpp')
-rw-r--r-- | protocols/Skype/src/skype_subclassing.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/protocols/Skype/src/skype_subclassing.cpp b/protocols/Skype/src/skype_subclassing.cpp index 1c067f4c3a..ed81021bd9 100644 --- a/protocols/Skype/src/skype_subclassing.cpp +++ b/protocols/Skype/src/skype_subclassing.cpp @@ -5,6 +5,16 @@ CAccount* CSkype::newAccount(int oid) return new CAccount(oid, this); } +CContactGroup* CSkype::newContactGroup(int oid) +{ + return new CContactGroup(oid, this); +} + +CContact* CSkype::newContact(int oid) +{ + return new CContact(oid, this); +} + CAccount::CAccount(unsigned int oid, SERootObject* root) : Account(oid, root) { this->isLoggedOut = true; |