diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-14 19:41:18 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-14 19:41:18 +0000 |
commit | 5c2da0fd5b2542d99750747fc746013b7755ddae (patch) | |
tree | 244101a9e85129c514bcc9f54d7ed3be1b4a3742 /protocols/Skype/src/skype_skype.cpp | |
parent | dca0e0ddd70216e068e98f13e7df2c5517ff0164 (diff) |
callbacks removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@4947 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_skype.cpp')
-rw-r--r-- | protocols/Skype/src/skype_skype.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Skype/src/skype_skype.cpp b/protocols/Skype/src/skype_skype.cpp index 65df7f98f7..4c683a0fa3 100644 --- a/protocols/Skype/src/skype_skype.cpp +++ b/protocols/Skype/src/skype_skype.cpp @@ -2,17 +2,17 @@ CAccount* CSkypeProto::newAccount(int oid)
{
- return new CAccount(oid, this);
+ return new CAccount(this, oid, this);
}
CContactGroup* CSkypeProto::newContactGroup(int oid)
{
- return new CContactGroup(oid, this);
+ return new CContactGroup(this, oid, this);
}
CContact* CSkypeProto::newContact(int oid)
{
- return new CContact(oid, this);
+ return new CContact(this, oid, this);
}
CConversation* CSkypeProto::newConversation(int oid)
@@ -32,7 +32,7 @@ CMessage* CSkypeProto::newMessage(int oid) CTransfer* CSkypeProto::newTransfer(int oid)
{
- return new CTransfer(oid, this);
+ return new CTransfer(this, oid, this);
}
CContactSearch* CSkypeProto::newContactSearch(int oid)
|