From 913eb113dd70d059037424bfc6cf231dee896ac3 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 15 Jun 2013 09:52:58 +0000 Subject: code cleaning & standardization git-svn-id: http://svn.miranda-ng.org/main/trunk@4952 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Skype/src/skype_skype.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'protocols/Skype/src/skype_skype.cpp') diff --git a/protocols/Skype/src/skype_skype.cpp b/protocols/Skype/src/skype_skype.cpp index 4c683a0fa3..65df7f98f7 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(this, oid, this); + return new CAccount(oid, this); } CContactGroup* CSkypeProto::newContactGroup(int oid) { - return new CContactGroup(this, oid, this); + return new CContactGroup(oid, this); } CContact* CSkypeProto::newContact(int oid) { - return new CContact(this, oid, this); + return new CContact(oid, this); } CConversation* CSkypeProto::newConversation(int oid) @@ -32,7 +32,7 @@ CMessage* CSkypeProto::newMessage(int oid) CTransfer* CSkypeProto::newTransfer(int oid) { - return new CTransfer(this, oid, this); + return new CTransfer(oid, this); } CContactSearch* CSkypeProto::newContactSearch(int oid) -- cgit v1.2.3