diff options
-rw-r--r-- | backends/taskbar/unity/unity-taskbar.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/backends/taskbar/unity/unity-taskbar.cpp b/backends/taskbar/unity/unity-taskbar.cpp index 0e034f9f98..532d9656c3 100644 --- a/backends/taskbar/unity/unity-taskbar.cpp +++ b/backends/taskbar/unity/unity-taskbar.cpp @@ -26,6 +26,8 @@ #if defined(POSIX) && defined(USE_TASKBAR) && defined(USE_UNITY) +#define GLIB_DISABLE_DEPRECATION_WARNINGS + #include "backends/taskbar/unity/unity-taskbar.h" #include "common/textconsole.h" @@ -33,13 +35,12 @@ #include <unity.h> UnityTaskbarManager::UnityTaskbarManager() { -#if GLIB_CHECK_VERSION(2, 36, 0) == FALSE /* - * Glib version is < 2.36.0, it still needs g_type_init(), - * deprecated in later versions + * Deprecated in Glib >= 2.36.0 */ - g_type_init(); -#endif + if (!glib_check_version(2, 36, 0)) { + g_type_init(); + } _loop = g_main_loop_new(NULL, FALSE); |