From 65c6790a7463df68854d14917de26b101d35553f Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 27 Feb 2014 13:51:27 +0000 Subject: minor code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@8294 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/core/modules.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/core/modules.cpp') diff --git a/src/core/modules.cpp b/src/core/modules.cpp index b38bf3bad6..3111bc9e7d 100644 --- a/src/core/modules.cpp +++ b/src/core/modules.cpp @@ -150,7 +150,9 @@ int LoadDefaultModules(void) if (LoadContactsModule()) return 1; if (LoadContactListModule()) return 1; // prepare contact list interface if (LoadAddContactModule()) return 1; - // if (LoadMetacontacts()) return 1; + #ifdef _DEBUG + if (LoadMetacontacts()) return 1; + #endif if (LoadNewPluginsModule()) return 1; // will call Load(void) on everything, clist will load first Langpack_SortDuplicates(); @@ -169,7 +171,9 @@ void UnloadDefaultModules(void) { UnloadChatModule(); UnloadAccountsModule(); - // UnloadMetacontacts(); + #ifdef _DEBUG + UnloadMetacontacts(); + #endif UnloadNewPlugins(); UnloadProtocolsModule(); UnloadSkinSounds(); -- cgit v1.2.3