diff options
author | George Hazan <ghazan@miranda.im> | 2020-06-01 17:12:39 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-06-01 17:12:39 +0300 |
commit | cad1e7a8d2f3c77c05185268269d8cf190c58120 (patch) | |
tree | 4b6b223f5ee7876a986566cce3a0a89522a5ebff /plugins/NewStory/src/main.cpp | |
parent | b1226db758ddef092db6eb036abc6513cc06c26f (diff) |
fixes #2394 (NewStory: его пункты меню не отключаются)
Diffstat (limited to 'plugins/NewStory/src/main.cpp')
-rw-r--r-- | plugins/NewStory/src/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/NewStory/src/main.cpp b/plugins/NewStory/src/main.cpp index e090402bdc..a480feebd7 100644 --- a/plugins/NewStory/src/main.cpp +++ b/plugins/NewStory/src/main.cpp @@ -82,12 +82,14 @@ static int evtModulesLoaded(WPARAM, LPARAM) CMenuItem mi(&g_plugin); + SET_UID(mi, 0xc20d7a69, 0x7607, 0x4aad, 0xa7, 0x42, 0x10, 0x86, 0xfb, 0x32, 0x49, 0x21); mi.pszService = MS_HISTORY_SHOWCONTACTHISTORY; mi.name.a = LPGEN("User history"); mi.position = 1999990000; mi.hIcon = g_plugin.getIcon(ICO_NEWSTORY); Menu_AddContactMenuItem(&mi); + SET_UID(mi, 0xc20d7a69, 0x7607, 0x4aad, 0xa7, 0x42, 0x10, 0x86, 0xfb, 0x32, 0x49, 0x22); mi.pszService = "Newstory/System"; mi.name.a = LPGEN("System history"); mi.position = 1999990000; |