diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-02 15:53:29 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-02 15:53:29 +0300 |
commit | 539586996ab793264744b580e808140da439a22e (patch) | |
tree | 068b81a29931a66ca12e578ecbbbbd8f99be7be6 /protocols/JabberG/src/jabber_proto.h | |
parent | 38e179fe0f2e0f4335722f50b582c04a92ceb639 (diff) |
fixes #1241 (some status menu items don't change language until restart)
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.h')
-rwxr-xr-x | protocols/JabberG/src/jabber_proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/JabberG/src/jabber_proto.h b/protocols/JabberG/src/jabber_proto.h index a90d65494a..e3c8aea5f1 100755 --- a/protocols/JabberG/src/jabber_proto.h +++ b/protocols/JabberG/src/jabber_proto.h @@ -121,6 +121,7 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface int __cdecl OnContactDeleted(WPARAM, LPARAM);
int __cdecl OnDbSettingChanged(WPARAM, LPARAM);
int __cdecl OnIdleChanged(WPARAM, LPARAM);
+ int __cdecl OnLangChanged(WPARAM, LPARAM);
int __cdecl OnModulesLoadedEx(WPARAM, LPARAM);
int __cdecl OnOptionsInit(WPARAM, LPARAM);
int __cdecl OnPreShutdown(WPARAM, LPARAM);
@@ -634,6 +635,7 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface void MenuInit(void);
void MenuUpdateSrmmIcon(JABBER_LIST_ITEM *item);
+ void BuildPriorityMenu(void);
void UpdatePriorityMenu(int priority);
HGENMENU m_hMenuPriorityRoot;
|