diff options
author | George Hazan <ghazan@miranda.im> | 2021-03-12 13:21:39 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-03-12 13:21:39 +0300 |
commit | febd22cce4a16b2222b1b14d70edabbc9cd37805 (patch) | |
tree | ca9d9f7801849fe14645173aee304459aa02f8c4 | |
parent | 7b6735c0e81cedc8146dfae510f14a5cf5a26528 (diff) |
fixes #2760 (Jabber: не работает меню Invite to room)
-rw-r--r-- | protocols/JabberG/src/jabber_chat.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/JabberG/src/jabber_chat.cpp b/protocols/JabberG/src/jabber_chat.cpp index 6a90389fb4..8946a65c78 100644 --- a/protocols/JabberG/src/jabber_chat.cpp +++ b/protocols/JabberG/src/jabber_chat.cpp @@ -546,6 +546,7 @@ int CJabberProto::JabberGcMenuHook(WPARAM, LPARAM lParam) gc_item *pItem = sttFindGcMenuItem(_countof(sttListItems), sttListItems, idx);
pItem->uType = MENU_POPUPITEM;
+ pItem->pszDesc = item->si->ptszID;
if (++idx > IDM_LINK9)
break;
}
|