diff options
author | George Hazan <george.hazan@gmail.com> | 2014-03-03 18:40:44 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-03-03 18:40:44 +0000 |
commit | 05c8e7e008bce31c4208c3e77d54d9c82903b8b9 (patch) | |
tree | f503e2262ff91821846f160040d5f19415fd7642 /src | |
parent | e848c27540a4f95e9e256b1761f6416c4d586381 (diff) |
unused variables removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@8385 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-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"
|