diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-09-05 11:18:53 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-09-05 11:18:53 +0000 |
commit | e7eeca1b7a7959bc7887cb98a4deac7918df64ab (patch) | |
tree | 72ea6893fa0122d6e25f12f8be30ab43884aa8a5 /plugins | |
parent | fa4e5d5f0afde91ca0656d1879867d191290fa4f (diff) |
SendScreenshot: menu uid
git-svn-id: http://svn.miranda-ng.org/main/trunk@15258 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/SendScreenshotPlus/src/Main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/SendScreenshotPlus/src/Main.cpp b/plugins/SendScreenshotPlus/src/Main.cpp index 717cdfa04c..7c2cf90a88 100644 --- a/plugins/SendScreenshotPlus/src/Main.cpp +++ b/plugins/SendScreenshotPlus/src/Main.cpp @@ -288,16 +288,19 @@ DLL_EXPORT int Load(void) mi.flags = CMIF_TCHAR; mi.hIcolibItem = GetIconHandle(ICO_MAINXS); + SET_UID(mi, 0xa559a22e, 0xd0f9, 0x4553, 0x8e, 0x68, 0x55, 0xb3, 0xae, 0xc4, 0x5d, 0x93); mi.name.t = LPGENT("Take a screenshot"); mi.pszService = MS_SENDSS_OPENDIALOG; mi.position = 1000001; Menu_AddMainMenuItem(&mi); + SET_UID(mi, 0xfea0a84, 0x1767, 0x4605, 0x99, 0xf0, 0xa9, 0x48, 0x1a, 0xa6, 0x6f, 0xce); mi.name.t = LPGENT("Send screenshot"); mi.pszService = MS_SENDSS_OPENDIALOG; mi.position = 1000000; Menu_AddContactMenuItem(&mi); + SET_UID(mi, 0x8d5b0d9a, 0x68d4, 0x4594, 0x9f, 0x41, 0x0, 0x64, 0x20, 0xe7, 0xf8, 0x9f); mi.name.t = LPGENT("Send desktop screenshot"); mi.pszService = MS_SENDSS_SENDDESKTOP; mi.position = 1000001; |