summaryrefslogtreecommitdiff
path: root/plugins/StatusPlugins
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-06-13 22:16:46 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-06-13 22:16:46 +0000
commita04043571f2d04ff9d117f921115f97f7bf42870 (patch)
tree38592b1a7324b6d3d50fe75976db1f73e20f2364 /plugins/StatusPlugins
parent950917d869583a8e09135c5d7b5b81d98ed1a213 (diff)
Unicode description is no longer needed in PluginInfo
git-svn-id: http://svn.miranda-ng.org/main/trunk@401 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/StatusPlugins')
-rw-r--r--plugins/StatusPlugins/KeepStatus/main.cpp6
-rw-r--r--plugins/StatusPlugins/StartupStatus/main.cpp6
2 files changed, 2 insertions, 10 deletions
diff --git a/plugins/StatusPlugins/KeepStatus/main.cpp b/plugins/StatusPlugins/KeepStatus/main.cpp
index 09578aef1a..1910dec585 100644
--- a/plugins/StatusPlugins/KeepStatus/main.cpp
+++ b/plugins/StatusPlugins/KeepStatus/main.cpp
@@ -53,11 +53,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved)
PLUGININFOEX pluginInfoEx={
sizeof(PLUGININFOEX),
- #if defined( _UNICODE )
- __PLUGIN_NAME __PLATFORM_NAME " (Unicode)",
- #else
- __PLUGIN_NAME,
- #endif
+ __PLUGIN_NAME,
PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
__DESC,
__AUTHOR,
diff --git a/plugins/StatusPlugins/StartupStatus/main.cpp b/plugins/StatusPlugins/StartupStatus/main.cpp
index 577c7c2799..3349351afa 100644
--- a/plugins/StatusPlugins/StartupStatus/main.cpp
+++ b/plugins/StatusPlugins/StartupStatus/main.cpp
@@ -51,11 +51,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved)
PLUGININFOEX pluginInfoEx={
sizeof(PLUGININFOEX),
- #if defined( _UNICODE )
- __PLUGIN_NAME __PLATFORM_NAME " (Unicode)",
- #else
- __PLUGIN_NAME,
- #endif
+ __PLUGIN_NAME,
PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
__DESC,
__AUTHOR,