diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-13 22:16:46 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-13 22:16:46 +0000 |
commit | a04043571f2d04ff9d117f921115f97f7bf42870 (patch) | |
tree | 38592b1a7324b6d3d50fe75976db1f73e20f2364 /plugins/Clist_nicer/SRC/init.cpp | |
parent | 950917d869583a8e09135c5d7b5b81d98ed1a213 (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/Clist_nicer/SRC/init.cpp')
-rw-r--r-- | plugins/Clist_nicer/SRC/init.cpp | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/plugins/Clist_nicer/SRC/init.cpp b/plugins/Clist_nicer/SRC/init.cpp index ee3bb78732..47c1e5c249 100644 --- a/plugins/Clist_nicer/SRC/init.cpp +++ b/plugins/Clist_nicer/SRC/init.cpp @@ -103,17 +103,19 @@ INT_PTR TrayIconProcessMessage(WPARAM wParam, LPARAM lParam); void ( *saveRecalcScrollBar )(HWND hwnd, struct ClcData *dat);
void RecalcScrollBar(HWND hwnd, struct ClcData *dat);
-PLUGININFOEX pluginInfo = {
-#if defined(_UNICODE)
- sizeof(PLUGININFOEX), "CList Nicer+ (Unicode)", PLUGIN_MAKE_VERSION(0, 9, 2, 1),
-#else
- sizeof(PLUGININFOEX), "CList Nicer+", PLUGIN_MAKE_VERSION(0, 9, 2, 1),
-#endif
- "Display contacts, event notifications, protocol status",
- "Pixel, egoDust, cyreve, Nightwish", "", "Copyright 2000-2010 Miranda-IM project", "http://www.miranda-im.org",
- UNICODE_AWARE,
- DEFMOD_CLISTALL,
- {0x8f79b4ee, 0xeb48, 0x4a03, { 0x87, 0x3e, 0x27, 0xbe, 0x6b, 0x7e, 0x9a, 0x25 }} //{8F79B4EE-EB48-4a03-873E-27BE6B7E9A25}
+PLUGININFOEX pluginInfo =
+{
+ sizeof(PLUGININFOEX),
+ "CList Nicer+",
+ PLUGIN_MAKE_VERSION(0, 9, 2, 1),
+ "Display contacts, event notifications, protocol status",
+ "Pixel, egoDust, cyreve, Nightwish",
+ "",
+ "Copyright 2000-2010 Miranda-IM project",
+ "http://www.miranda-im.org",
+ UNICODE_AWARE,
+ DEFMOD_CLISTALL,
+ {0x8f79b4ee, 0xeb48, 0x4a03, { 0x87, 0x3e, 0x27, 0xbe, 0x6b, 0x7e, 0x9a, 0x25 }} //{8F79B4EE-EB48-4a03-873E-27BE6B7E9A25}
};
#if defined(_UNICODE)
|