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/UserGuide | |
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/UserGuide')
-rw-r--r-- | plugins/UserGuide/src/commonheaders.h | 2 | ||||
-rw-r--r-- | plugins/UserGuide/src/main.cpp | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/plugins/UserGuide/src/commonheaders.h b/plugins/UserGuide/src/commonheaders.h index 498dbb5b13..cf71412494 100644 --- a/plugins/UserGuide/src/commonheaders.h +++ b/plugins/UserGuide/src/commonheaders.h @@ -10,5 +10,3 @@ #include <m_clist.h>
#include <m_skin.h>
#include <m_utils.h>
-
-#define MIID_USERGUIDE {0x297ec1e7, 0x41b7, 0x41f9, { 0xbb, 0x91, 0xef, 0xa9, 0x50, 0x28, 0xf1, 0x6c }} //297ec1e7-41b7-41f9-bb91-efa95028f16c
diff --git a/plugins/UserGuide/src/main.cpp b/plugins/UserGuide/src/main.cpp index c11494cf38..1e99ce017f 100644 --- a/plugins/UserGuide/src/main.cpp +++ b/plugins/UserGuide/src/main.cpp @@ -15,7 +15,8 @@ PLUGININFOEX pluginInfo={ "© 2009 Mikhail Yuriev",
"http://miranda-ng.org/",
UNICODE_AWARE,
- MIID_USERGUIDE
+ {0x297ec1e7, 0x41b7, 0x41f9, { 0xbb, 0x91, 0xef, 0xa9, 0x50, 0x28, 0xf1, 0x6c }} //297ec1e7-41b7-41f9-bb91-efa95028f16c
+
};
static INT_PTR ShowGuideFile(WPARAM wParam,LPARAM lParam)
|