diff options
author | George Hazan <ghazan@miranda.im> | 2018-11-14 18:48:24 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-11-14 18:48:24 +0300 |
commit | cdd4ad76b7065a6fd9bf1b581020a28040010846 (patch) | |
tree | 164be04f31e2680e181d47ff98d83519d0b734b5 /plugins/StatusChange/src | |
parent | 68d6271552d4b9bdb27efda50c457f0d56b23457 (diff) |
two more unused MODULENAMEs
Diffstat (limited to 'plugins/StatusChange/src')
-rw-r--r-- | plugins/StatusChange/src/main.cpp | 2 | ||||
-rw-r--r-- | plugins/StatusChange/src/stdafx.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/plugins/StatusChange/src/main.cpp b/plugins/StatusChange/src/main.cpp index 0e4c3e44f4..eff65a9c02 100644 --- a/plugins/StatusChange/src/main.cpp +++ b/plugins/StatusChange/src/main.cpp @@ -24,7 +24,7 @@ PLUGININFOEX pluginInfoEx = };
CMPlugin::CMPlugin() :
- PLUGIN<CMPlugin>(MODULENAME, pluginInfoEx)
+ PLUGIN<CMPlugin>("StatusChange", pluginInfoEx)
{}
/////////////////////////////////////////////////////////////////////////////////////////
diff --git a/plugins/StatusChange/src/stdafx.h b/plugins/StatusChange/src/stdafx.h index 7bc56869e1..a1a22ef235 100644 --- a/plugins/StatusChange/src/stdafx.h +++ b/plugins/StatusChange/src/stdafx.h @@ -16,8 +16,6 @@ #include "resource.h"
#include "version.h"
-#define MODULENAME "StatusChange"
-
struct CMPlugin : public PLUGIN<CMPlugin>
{
CMPlugin();
|