summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-11-14 18:23:04 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-11-14 18:23:04 +0300
commit64e3214c2222543350f51b517a6b75b6b02b81cf (patch)
tree912a29fc20b5cda33f0e7c75170cedea6faec03c /src
parent3618cbf67d6b02fb52b364a93a836a6b59f06a2f (diff)
unused MODULENAME macros removed
Diffstat (limited to 'src')
-rw-r--r--src/core/stduserinfo/src/main.cpp2
-rw-r--r--src/core/stduserinfo/src/stdafx.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/core/stduserinfo/src/main.cpp b/src/core/stduserinfo/src/main.cpp
index bfc375e5a8..69dd8228dd 100644
--- a/src/core/stduserinfo/src/main.cpp
+++ b/src/core/stduserinfo/src/main.cpp
@@ -41,7 +41,7 @@ PLUGININFOEX pluginInfoEx = {
};
CMPlugin::CMPlugin() :
- PLUGIN<CMPlugin>(MODULENAME, pluginInfoEx)
+ PLUGIN<CMPlugin>("UserInfo", pluginInfoEx)
{}
/////////////////////////////////////////////////////////////////////////////////////////
diff --git a/src/core/stduserinfo/src/stdafx.h b/src/core/stduserinfo/src/stdafx.h
index ab612d0f60..da9e8eb346 100644
--- a/src/core/stduserinfo/src/stdafx.h
+++ b/src/core/stduserinfo/src/stdafx.h
@@ -67,8 +67,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "../../mir_app/src/resource.h"
-#define MODULENAME "UserInfo"
-
struct CMPlugin : public PLUGIN<CMPlugin>
{
CMPlugin();