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/SplashScreen/src | |
parent | 3618cbf67d6b02fb52b364a93a836a6b59f06a2f (diff) |
unused MODULENAME macros removed
Diffstat (limited to 'plugins/SplashScreen/src')
-rw-r--r-- | plugins/SplashScreen/src/main.cpp | 2 | ||||
-rw-r--r-- | plugins/SplashScreen/src/stdafx.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SplashScreen/src/main.cpp b/plugins/SplashScreen/src/main.cpp index 403e9a7d04..49b1034086 100644 --- a/plugins/SplashScreen/src/main.cpp +++ b/plugins/SplashScreen/src/main.cpp @@ -51,7 +51,7 @@ PLUGININFOEX pluginInfoEx = { };
CMPlugin::CMPlugin() :
- PLUGIN<CMPlugin>(MODULENAME, pluginInfoEx)
+ PLUGIN<CMPlugin>("SplashScreen", pluginInfoEx)
{}
/////////////////////////////////////////////////////////////////////////////////////////
diff --git a/plugins/SplashScreen/src/stdafx.h b/plugins/SplashScreen/src/stdafx.h index 5907f3e701..10fd640553 100644 --- a/plugins/SplashScreen/src/stdafx.h +++ b/plugins/SplashScreen/src/stdafx.h @@ -49,7 +49,7 @@ // Internal defines
#define SPLASH_CLASS L"MirandaSplash"
-#define MODULENAME "SplashScreen"
+
#define WM_LOADED (WM_USER + 10)
struct CMPlugin : public PLUGIN<CMPlugin>
|