diff options
author | George Hazan <ghazan@miranda.im> | 2021-03-13 12:50:08 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-03-13 12:50:08 +0300 |
commit | b10f9d1556172e721e5a0c345f67f4827408a6db (patch) | |
tree | d9a7f73b0c0a6b75b88e9a18237449e0b402b061 /protocols/Sametime/src/utils.cpp | |
parent | c29f438443c64f796472d234b30881cff8f4ea57 (diff) |
warning fixes
Diffstat (limited to 'protocols/Sametime/src/utils.cpp')
-rw-r--r-- | protocols/Sametime/src/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Sametime/src/utils.cpp b/protocols/Sametime/src/utils.cpp index 5644c72342..d7bffc8089 100644 --- a/protocols/Sametime/src/utils.cpp +++ b/protocols/Sametime/src/utils.cpp @@ -141,7 +141,7 @@ void CSametimeProto::showPopup(guint32 code) g_free(rcDesc);
}
-void LogFromGLib(const gchar* log_domain, GLogLevelFlags log_level, const gchar* message, gpointer user_data)
+void LogFromGLib(const gchar*, GLogLevelFlags, const gchar* message, gpointer user_data)
{
CSametimeProto* proto = (CSametimeProto*)user_data;
proto->debugLogW(_A2T(message));
|