summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Schwinn <alexxcons@xfce.org>2020-12-15 23:05:56 +0100
committerAlexander Schwinn <alexxcons@xfce.org>2020-12-15 23:05:56 +0100
commit824aefdd07623918289bbf7a8b62c6896e65e11a (patch)
tree0aace44ded161f7a7217d9dbb8d0a0eb64501b74
parent3c49c758da7bc1c1ebfcbb206898318ec7db3a6c (diff)
downloadthunar-volman-824aefdd07623918289bbf7a8b62c6896e65e11a.tar.gz
Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump
Current glib minimum is 2.50.0
-rw-r--r--thunar-volman-settings/main.c6
-rw-r--r--thunar-volman/main.c6
2 files changed, 0 insertions, 12 deletions
diff --git a/thunar-volman-settings/main.c b/thunar-volman-settings/main.c
index 2567d8e..87cbd73 100644
--- a/thunar-volman-settings/main.c
+++ b/thunar-volman-settings/main.c
@@ -64,12 +64,6 @@ main (int argc,
g_log_set_always_fatal (G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING);
#endif
-#if !GLIB_CHECK_VERSION (2, 32, 0)
- /* initialize the threading system */
- if (!g_thread_supported ())
- g_thread_init (NULL);
-#endif
-
/* initialize GTK+ */
if (!gtk_init_with_args (&argc, &argv, NULL, option_entries, GETTEXT_PACKAGE, &error))
{
diff --git a/thunar-volman/main.c b/thunar-volman/main.c
index dd8d3a5..2312017 100644
--- a/thunar-volman/main.c
+++ b/thunar-volman/main.c
@@ -97,12 +97,6 @@ main (int argc,
g_log_set_always_fatal (G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING);
#endif
-#if !GLIB_CHECK_VERSION (2, 32, 0)
- /* initialize the threading system */
- if (!g_thread_supported ())
- g_thread_init (NULL);
-#endif
-
/* initialize GTK+ */
if (!gtk_init_with_args (&argc, &argv, NULL, option_entries, GETTEXT_PACKAGE, &error))
{