diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-09-05 11:22:22 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-09-05 11:22:22 +0000 |
commit | 5cf32823611f459a5c38c8bf694ccc1b429fc9ff (patch) | |
tree | b47c68602678550c371987999aea6ee169747929 /plugins/SimpleAR/src | |
parent | b62b3158d6ecd696c38a3f09f32c83def6c64e4f (diff) |
SimpleAR: menu uid
git-svn-id: http://svn.miranda-ng.org/main/trunk@15260 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SimpleAR/src')
-rw-r--r-- | plugins/SimpleAR/src/Main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/SimpleAR/src/Main.cpp b/plugins/SimpleAR/src/Main.cpp index c45b123906..6b49a6b55a 100644 --- a/plugins/SimpleAR/src/Main.cpp +++ b/plugins/SimpleAR/src/Main.cpp @@ -252,11 +252,14 @@ extern "C" int __declspec(dllexport)Load(void) CreateServiceFunction(protocolname"/ToggleAutoanswer", Toggle);
CMenuItem mi;
+
+ SET_UID(mi, 0xac1c64a, 0x82ca, 0x4845, 0x86, 0x89, 0x59, 0x76, 0x12, 0x74, 0x72, 0x7b);
mi.position = 500090000;
mi.name.t = _T("");
mi.pszService = protocolname"/ToggleEnable";
hEnableMenu = Menu_AddMainMenuItem(&mi);
+ SET_UID(mi, 0xb290cccd, 0x4ecc, 0x475e, 0x87, 0xcb, 0x51, 0xf4, 0x3b, 0xc3, 0x44, 0x9c);
mi.position = -0x7FFFFFFF;
mi.name.t = _T("");
mi.pszService = protocolname"/ToggleAutoanswer";
|