summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-05-04 20:14:26 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-05-04 20:14:26 +0000
commitd99dfcdef30598e72154955f9154b33646bf70d3 (patch)
tree2603fe1c87b0ffcd158c3e6e16b159af7a0a7526 /src/modules
parentc12a8920b8e6c8cc3b4773eef51e05f9be1ff73c (diff)
new hidden function to access ME_MC_DEFAULTTCHANGED
git-svn-id: http://svn.miranda-ng.org/main/trunk@9127 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/metacontacts/meta_services.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/metacontacts/meta_services.cpp b/src/modules/metacontacts/meta_services.cpp
index 4f5ae940ac..5efa60e6ea 100644
--- a/src/modules/metacontacts/meta_services.cpp
+++ b/src/modules/metacontacts/meta_services.cpp
@@ -26,6 +26,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "metacontacts.h"
+extern "C" MIR_CORE_DLL(void) db_mc_notifyDefChange(WPARAM wParam, LPARAM lParam);
+
char *pendingACK = 0; // Name of the protocol in which an ACK is about to come.
int previousMode, // Previous status of the MetaContacts Protocol
@@ -418,7 +420,7 @@ int Meta_SettingChanged(WPARAM hContact, LPARAM lParam)
// set status to that of most online contact
MCONTACT hMostOnline = Meta_GetMostOnline(ccMeta);
if (hMostOnline != db_mc_getDefault(ccMeta->contactID))
- db_mc_setDefault(ccMeta->contactID, hMostOnline, false);
+ db_mc_notifyDefChange(ccMeta->contactID, hMostOnline);
Meta_CopyContactNick(ccMeta, hMostOnline);
Meta_FixStatus(ccMeta);