diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-05 20:08:43 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-05 20:08:43 +0000 |
commit | 35a9af527f9b7ec35e81455784cd0a795be910c5 (patch) | |
tree | 7a562aa27d45a54e143d732452bfc62ad2d242c7 /plugins/Clist_mw | |
parent | 81dc8462ddae0555821a6093bda8a67fe6bb504e (diff) |
- removed duplicate constants;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@2211 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_mw')
-rw-r--r-- | plugins/Clist_mw/src/clui.cpp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/plugins/Clist_mw/src/clui.cpp b/plugins/Clist_mw/src/clui.cpp index c4ce950db4..3e23ecd5dc 100644 --- a/plugins/Clist_mw/src/clui.cpp +++ b/plugins/Clist_mw/src/clui.cpp @@ -42,13 +42,15 @@ static int lastreqh = 0,requr = 0,disableautoupd = 1; HANDLE hFrameContactTree;
BYTE showOpts;//for statusbar
-typedef struct{
-int IconsCount;
-int CycleStartTick;
-char *szProto;
-int n;
-int TimerCreated;
-} ProtoTicks,*pProtoTicks;
+typedef struct
+{
+ int IconsCount;
+ int CycleStartTick;
+ char *szProto;
+ int n;
+ int TimerCreated;
+}
+ ProtoTicks,*pProtoTicks;
ProtoTicks CycleStartTick[64];//max 64 protocols
@@ -77,9 +79,6 @@ HICON GetConnectingIconForProto_DLL(char *szProto,int b); void RegisterProtoIconsForAllProtoIconLib();
-#define M_CREATECLC (WM_USER+1)
-#define M_SETALLEXTRAICONS (WM_USER+2)
-
static int CluiModulesLoaded(WPARAM wParam,LPARAM lParam)
{
MENUITEMINFO mii;
|