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/wbOSD/src | |
parent | 3618cbf67d6b02fb52b364a93a836a6b59f06a2f (diff) |
unused MODULENAME macros removed
Diffstat (limited to 'plugins/wbOSD/src')
-rw-r--r-- | plugins/wbOSD/src/main.cpp | 2 | ||||
-rw-r--r-- | plugins/wbOSD/src/stdafx.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/plugins/wbOSD/src/main.cpp b/plugins/wbOSD/src/main.cpp index 3539f32de0..dc2167b8b1 100644 --- a/plugins/wbOSD/src/main.cpp +++ b/plugins/wbOSD/src/main.cpp @@ -33,7 +33,7 @@ static PLUGININFOEX pluginInfoEx = { };
CMPlugin::CMPlugin() :
- PLUGIN<CMPlugin>(MODULENAME, pluginInfoEx)
+ PLUGIN<CMPlugin>("mirandaosd", pluginInfoEx)
{}
/////////////////////////////////////////////////////////////////////////////////////////
diff --git a/plugins/wbOSD/src/stdafx.h b/plugins/wbOSD/src/stdafx.h index 4a22046169..2d903930f9 100644 --- a/plugins/wbOSD/src/stdafx.h +++ b/plugins/wbOSD/src/stdafx.h @@ -26,8 +26,6 @@ Distributed under GNU's GPL 2 or later #include "resource.h"
#include "version.h"
-#define MODULENAME "mirandaosd"
-
struct CMPlugin : public PLUGIN<CMPlugin>
{
CMPlugin();
|