diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-09-04 20:01:49 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-09-04 20:01:49 +0000 |
commit | 2bd1b41bbfba590749968c1c59e9a8fa8d53a37f (patch) | |
tree | b9725b2e459707a50de7e292cc7610eff693c988 /plugins | |
parent | c42e6e528f4df59eea7cf52c6b3590e1b3a5dd35 (diff) |
NewEventNotify: menu uid
git-svn-id: http://svn.miranda-ng.org/main/trunk@15233 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/NewEventNotify/src/menuitem.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/NewEventNotify/src/menuitem.cpp b/plugins/NewEventNotify/src/menuitem.cpp index d02ea6d2b6..9b4b74abc1 100644 --- a/plugins/NewEventNotify/src/menuitem.cpp +++ b/plugins/NewEventNotify/src/menuitem.cpp @@ -50,8 +50,11 @@ int MenuitemInit(BOOL bStatus) {
CreateServiceFunction(MS_NEN_MENUNOTIFY, MenuitemNotifyCmd);
+ HGENMENU hRoot = Menu_CreateRoot(MO_MAIN, LPGENT("Popups"), 0);
+
CMenuItem mi;
- mi.root = Menu_CreateRoot(MO_MAIN, LPGENT("Popups"), 0);
+ SET_UID(mi, 0x7aed93f7, 0x835, 0x4ff6, 0xb1, 0x34, 0xae, 0x0, 0x21, 0x2a, 0xd7, 0x81);
+ mi.root = hRoot;
mi.position = 1;
mi.hIcolibItem = LoadIcon(g_hInst, MAKEINTRESOURCE(IDI_ENABLED));
mi.pszService = MS_NEN_MENUNOTIFY;
|