summaryrefslogtreecommitdiff
path: root/plugins/IEHistory/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 /plugins/IEHistory/src
parent3618cbf67d6b02fb52b364a93a836a6b59f06a2f (diff)
unused MODULENAME macros removed
Diffstat (limited to 'plugins/IEHistory/src')
-rw-r--r--plugins/IEHistory/src/IEHistory.cpp2
-rw-r--r--plugins/IEHistory/src/stdafx.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/plugins/IEHistory/src/IEHistory.cpp b/plugins/IEHistory/src/IEHistory.cpp
index f8e5a290ee..442cbc95b2 100644
--- a/plugins/IEHistory/src/IEHistory.cpp
+++ b/plugins/IEHistory/src/IEHistory.cpp
@@ -46,7 +46,7 @@ PLUGININFOEX pluginInfoEx = {
};
CMPlugin::CMPlugin() :
- PLUGIN<CMPlugin>(MODULENAME, pluginInfoEx)
+ PLUGIN<CMPlugin>("IEHistory", pluginInfoEx)
{}
/////////////////////////////////////////////////////////////////////////////////////////
diff --git a/plugins/IEHistory/src/stdafx.h b/plugins/IEHistory/src/stdafx.h
index 3d182815ff..8e69c67a8f 100644
--- a/plugins/IEHistory/src/stdafx.h
+++ b/plugins/IEHistory/src/stdafx.h
@@ -69,8 +69,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# define sntprintf snwprintf
#endif
-#define MODULENAME "IEHistory"
-
struct CMPlugin : public PLUGIN<CMPlugin>
{
CMPlugin();