diff options
author | George Hazan <george.hazan@gmail.com> | 2023-10-16 20:03:19 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-10-16 20:03:19 +0300 |
commit | d9b8185fda6ce035e7cf383f279d95dabde47953 (patch) | |
tree | 000f1d49ad982e94eb98016b47b23d4992c12977 /plugins | |
parent | df4c18c10e0fe094eda65187e97b77b9af10ca3d (diff) |
code cleaning
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Jingle/src/account.cpp | 2 | ||||
-rw-r--r-- | plugins/Jingle/src/stdafx.h | 1 | ||||
-rw-r--r-- | plugins/Jingle/src/voip.cpp | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/plugins/Jingle/src/account.cpp b/plugins/Jingle/src/account.cpp index 418cef2ff1..9a553443a9 100644 --- a/plugins/Jingle/src/account.cpp +++ b/plugins/Jingle/src/account.cpp @@ -51,7 +51,7 @@ static int OnSettingChanged(WPARAM hContact, LPARAM lParam) if (!mir_strcmp(it->m_szModuleName, pcws->szModule)) { it->InitVoip(pcws->value.bVal != 0); break; - } + } } } } diff --git a/plugins/Jingle/src/stdafx.h b/plugins/Jingle/src/stdafx.h index 4c7a794c1a..ba9edde323 100644 --- a/plugins/Jingle/src/stdafx.h +++ b/plugins/Jingle/src/stdafx.h @@ -23,6 +23,7 @@ #include <m_jabber.h> #include <m_jingle.h> #include <m_langpack.h> +#include <m_netlib.h> #include <m_voice.h> #include <m_voiceservice.h> diff --git a/plugins/Jingle/src/voip.cpp b/plugins/Jingle/src/voip.cpp index bb330277b4..fadcd5c24b 100644 --- a/plugins/Jingle/src/voip.cpp +++ b/plugins/Jingle/src/voip.cpp @@ -263,7 +263,7 @@ static gboolean check_plugins(void) void dbgprint(const gchar *string) { - OutputDebugStringA(string); + Netlib_Logf(0, "GST: %s", string); } bool CJabberAccount::VOIPCreatePipeline(void) |