diff options
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();
|