diff options
-rw-r--r-- | src/modules/metacontacts/meta_services.cpp | 10 | ||||
-rw-r--r-- | src/modules/metacontacts/metacontacts.h | 1 |
2 files changed, 1 insertions, 10 deletions
diff --git a/src/modules/metacontacts/meta_services.cpp b/src/modules/metacontacts/meta_services.cpp index d9131c9461..e030a4572a 100644 --- a/src/modules/metacontacts/meta_services.cpp +++ b/src/modules/metacontacts/meta_services.cpp @@ -40,14 +40,6 @@ HANDLE hSubcontactsChanged, // HANDLE to the 'contacts changed' event
hEventNudge;
-
-DWORD nextMetaID; //!< Global variable specifying the ID value the next MetaContact will have.
-
-// stuff for mw_clist extra icon
-HANDLE hExtraImage[MAX_PROTOCOLS * 2]; // online and offline icons
-char proto_names[MAX_PROTOCOLS * 128];
-HANDLE hProtoIcons[MAX_PROTOCOLS * 2]; // online and offline icons
-
UINT_PTR setStatusTimerId = 0;
BOOL firstSetOnline = TRUE; // see Meta_SetStatus function
@@ -862,8 +854,8 @@ int NudgeRecieved(WPARAM wParam, LPARAM lParam) /** Called when all the plugin are loaded into Miranda.
*
* Initializes the 4 menus present in the context-menu
-* and the initial value of nextMetaID
*/
+
int Meta_ModulesLoaded(WPARAM wParam, LPARAM lParam)
{
HookEvent(ME_CLIST_PREBUILDCONTACTMENU, Meta_ModifyMenu);
diff --git a/src/modules/metacontacts/metacontacts.h b/src/modules/metacontacts/metacontacts.h index bba360fdd5..7a22e9e351 100644 --- a/src/modules/metacontacts/metacontacts.h +++ b/src/modules/metacontacts/metacontacts.h @@ -155,7 +155,6 @@ extern HANDLE hEventDefaultChanged, hEventForceSend, hEventUnforceSend, hSubcont extern POINT menuMousePoint;
#define MAX_PROTOCOLS 20
-extern char proto_names[MAX_PROTOCOLS * 128];
// used for the 'jabber' hack - i.e. hide contacts instead of moving them to the hidden group
#define JABBER_UNIQUE_ID_SETTING "jid"
|