diff options
author | George Hazan <ghazan@miranda.im> | 2018-11-14 18:23:04 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-11-14 18:23:04 +0300 |
commit | 64e3214c2222543350f51b517a6b75b6b02b81cf (patch) | |
tree | 912a29fc20b5cda33f0e7c75170cedea6faec03c /plugins/Exchange | |
parent | 3618cbf67d6b02fb52b364a93a836a6b59f06a2f (diff) |
unused MODULENAME macros removed
Diffstat (limited to 'plugins/Exchange')
-rw-r--r-- | plugins/Exchange/src/exchange.cpp | 2 | ||||
-rw-r--r-- | plugins/Exchange/src/stdafx.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/plugins/Exchange/src/exchange.cpp b/plugins/Exchange/src/exchange.cpp index 772faf237c..73ae8d175f 100644 --- a/plugins/Exchange/src/exchange.cpp +++ b/plugins/Exchange/src/exchange.cpp @@ -43,7 +43,7 @@ PLUGININFOEX pluginInfoEx = };
CMPlugin::CMPlugin() :
- PLUGIN<CMPlugin>(MODULENAME, pluginInfoEx)
+ PLUGIN<CMPlugin>("ExchangeNotify", pluginInfoEx)
{}
/////////////////////////////////////////////////////////////////////////////////////////
diff --git a/plugins/Exchange/src/stdafx.h b/plugins/Exchange/src/stdafx.h index 67394ca4ce..152f680f18 100644 --- a/plugins/Exchange/src/stdafx.h +++ b/plugins/Exchange/src/stdafx.h @@ -48,8 +48,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "services.h"
#include "hooked_events.h"
-#define MODULENAME "ExchangeNotify"
-
extern HICON hiMailIcon;
extern HWND hEmailsDlg;
|