diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-29 08:32:31 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-29 08:32:31 +0000 |
commit | 73e40c0b5ceedc93c111530c71bc5dc798390bcb (patch) | |
tree | 997acb691537e18591a7da13f1045be4aca69233 /plugins/TooltipNotify | |
parent | 9e9d4543d3558a5c611a6fd1c375540c1088df16 (diff) |
- muuid standardization (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3332 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TooltipNotify')
-rw-r--r-- | plugins/TooltipNotify/src/main.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/TooltipNotify/src/main.cpp b/plugins/TooltipNotify/src/main.cpp index 36d5aa80ef..6a250e8bef 100644 --- a/plugins/TooltipNotify/src/main.cpp +++ b/plugins/TooltipNotify/src/main.cpp @@ -6,9 +6,6 @@ #include "version.h"
#include "TooltipNotify.h"
-// {5906A545-F31A-4726-B48F-03A09F060318}
-static const MUUID MIID_TOOLTIPNOTIFY_UNICODE =
-{ 0x5906a545, 0xf31a, 0x4726, { 0xb4, 0x8f, 0x3, 0xa0, 0x9f, 0x6, 0x3, 0x18 } };
// {03CD82B6-0BB5-4f26-8EB4-06CD8ECD36FF}
static const MUUID MIID_TOOLTIPNOTIFY =
@@ -77,7 +74,7 @@ static PLUGININFOEX sPluginInfo = "© 2004-2008 Gneedah software",
"http://miranda-ng.org/",
UNICODE_AWARE, //doesn't replace anything built-in
- MIID_TOOLTIPNOTIFY_UNICODE
+ { 0x5906a545, 0xf31a, 0x4726, { 0xb4, 0x8f, 0x3, 0xa0, 0x9f, 0x6, 0x3, 0x18 } } // {5906A545-F31A-4726-B48F-03A09F060318}
};
extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
|