diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-09-04 20:08:12 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-09-04 20:08:12 +0000 |
commit | 834357f42a33c857ad2f535b346cb366c21f8600 (patch) | |
tree | 87da8a282fdd3fffc80df221b6aaef45c4838b65 /plugins/NoHistory/src | |
parent | b86d15801109d76731972f6cefabe3a12956e2f7 (diff) |
NoHistory: menu uid
git-svn-id: http://svn.miranda-ng.org/main/trunk@15236 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NoHistory/src')
-rw-r--r-- | plugins/NoHistory/src/dllmain.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/NoHistory/src/dllmain.cpp b/plugins/NoHistory/src/dllmain.cpp index 794c895f3d..038a5cec5c 100644 --- a/plugins/NoHistory/src/dllmain.cpp +++ b/plugins/NoHistory/src/dllmain.cpp @@ -248,12 +248,14 @@ int ModulesLoaded(WPARAM, LPARAM) CMenuItem mi;
mi.flags = CMIF_TCHAR;
+ SET_UID(mi, 0xede12697, 0x3e9d, 0x47ca, 0x83, 0xe0, 0xc1, 0x40, 0x69, 0xbf, 0x2d, 0xab);
mi.position = -300010;
mi.name.t = LPGENT("Disable History");
mi.pszService = MS_NOHISTORY_TOGGLE;
mi.hIcolibItem = hIconRemove;
hMenuToggle = Menu_AddContactMenuItem(&mi);
+ SET_UID(mi, 0x1c4b1c21, 0xc0d1, 0x44d1, 0xb5, 0x3c, 0xc7, 0x8d, 0xcf, 0x96, 0x51, 0xd7);
mi.position = -300005;
mi.name.t = LPGENT("Clear History");
mi.pszService = MS_NOHISTORY_CLEAR;
|