From bf88761455597a47f1074d01c4a29c41e0fe270c Mon Sep 17 00:00:00 2001 From: Gluzskiy Alexandr Date: Sat, 10 Mar 2012 21:13:22 +0200 Subject: copyrights --- metacontacts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 metacontacts.cpp (limited to 'metacontacts.cpp') diff --git a/metacontacts.cpp b/metacontacts.cpp old mode 100644 new mode 100755 index 46185e4..6e96ebe --- a/metacontacts.cpp +++ b/metacontacts.cpp @@ -1,4 +1,4 @@ -// Copyright © 2010 SecureIM developers (baloo and others), sss +// Copyright © 2010-2012 SecureIM developers (baloo and others), sss // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License -- cgit v1.2.3 From 9026615fea720ca69d3a3480a69e32e5432db69b Mon Sep 17 00:00:00 2001 From: Gluzskiy Alexandr Date: Sat, 19 May 2012 01:43:48 +0300 Subject: fixed one more metacontacts problem added option to remove own tags in outgoing messages (useful to quote) --- metacontacts.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'metacontacts.cpp') diff --git a/metacontacts.cpp b/metacontacts.cpp index 6e96ebe..1abc2aa 100755 --- a/metacontacts.cpp +++ b/metacontacts.cpp @@ -44,7 +44,7 @@ HANDLE metaGetContact(HANDLE hContact) if(bMetaContacts) if(metaIsSubcontact(hContact)) return (HANDLE)CallService(MS_MC_GETMETACONTACT,(WPARAM)hContact,0); - return hContact; + return NULL; } bool metaIsSubcontact(HANDLE hContact) { @@ -60,7 +60,7 @@ HANDLE metaGetMostOnline(HANDLE hContact) if(bMetaContacts) if(metaIsProtoMetaContacts(hContact)) return (HANDLE)CallService(MS_MC_GETMOSTONLINECONTACT,(WPARAM)hContact,0); - return hContact; + return NULL; } HANDLE metaGetDefault(HANDLE hContact) { @@ -68,7 +68,7 @@ HANDLE metaGetDefault(HANDLE hContact) if(bMetaContacts) if(metaIsProtoMetaContacts(hContact)) return (HANDLE)CallService(MS_MC_GETDEFAULTCONTACT,(WPARAM)hContact,0); - return hContact; + return NULL; } -- cgit v1.2.3