diff options
author | George Hazan <george.hazan@gmail.com> | 2015-12-02 22:49:26 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-12-02 22:49:26 +0000 |
commit | 903ccadbacf5e4d2b20a941a7e2d0cf238c0acb4 (patch) | |
tree | 98da3e7d48f9584906bc0a3237df9ead362bbeb0 /plugins/HistoryStats/src | |
parent | 1b5b29808bb2d596b69e61149cd690f2306812b7 (diff) |
missing menu ids in HistoryStats
git-svn-id: http://svn.miranda-ng.org/main/trunk@15810 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryStats/src')
-rw-r--r-- | plugins/HistoryStats/src/mu_common.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/HistoryStats/src/mu_common.cpp b/plugins/HistoryStats/src/mu_common.cpp index 812e0644e7..4bdf16a7f1 100644 --- a/plugins/HistoryStats/src/mu_common.cpp +++ b/plugins/HistoryStats/src/mu_common.cpp @@ -4,6 +4,9 @@ #include <map>
#include <set>
+// {7649A9F5-E57F-4E5D-A715-7BD8B3496DBE}
+static MUUID menu_id = { 0x7649a9f5, 0xe57f, 0x4e5d, 0xa7, 0x15, 0x7b, 0xd8, 0xb3, 0x49, 0x6d, 0xbe };
+
namespace mu
{
/*
@@ -22,6 +25,7 @@ namespace mu mi.hIcolibItem = hIcon;
mi.pszService = const_cast<char*>(pszService);
mi.root = hRoot;
+ mi.uid = menu_id; menu_id.d[7]++;
return Menu_AddMainMenuItem(&mi);
}
@@ -34,6 +38,7 @@ namespace mu mi.position = position;
mi.hIcolibItem = hIcon;
mi.pszService = const_cast<char*>(pszService);
+ mi.uid = menu_id; menu_id.d[7]++;
return Menu_AddContactMenuItem(&mi);
}
}
|