diff options
author | George Hazan <george.hazan@gmail.com> | 2023-07-11 12:43:04 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-07-11 12:43:04 +0300 |
commit | 7160ef85c883d4ad171d9258df142484b55d14fc (patch) | |
tree | 253a900007995aed3e4cb7c128deddaf8f8d7e91 /plugins/Jingle | |
parent | d9cdbf7eba8b496b7325c736fdc7dbd2afc55a29 (diff) |
fixes #3572 (Jingle: пропал пункт меню "Позвонить контакту")
Diffstat (limited to 'plugins/Jingle')
-rw-r--r-- | plugins/Jingle/src/account.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Jingle/src/account.cpp b/plugins/Jingle/src/account.cpp index a6e68b76ec..418cef2ff1 100644 --- a/plugins/Jingle/src/account.cpp +++ b/plugins/Jingle/src/account.cpp @@ -270,7 +270,7 @@ static INT_PTR __cdecl JabberVOIP_dropcall(void *pThis, WPARAM id, LPARAM) CJabberAccount::CJabberAccount(IJabberInterface *_1) : m_api(_1), m_szModuleName(m_api->GetModuleName()), - m_bEnableVOIP(m_szModuleName, "EnableVOIP", false) + m_bEnableVOIP(m_api->GetModuleName(), "EnableVOIP", false) { CMStringA tmp(m_szModuleName); m_hVoiceEvent = CreateHookableEvent(tmp + PE_VOICE_CALL_STATE); |