[gtk+/no-init-args: 4/10] Drop the --gtk-modules argument



commit 002d616ca4405ddbf5b9ef95965d601713e3aa1b
Author: Matthias Clasen <mclasen redhat com>
Date:   Tue Dec 27 18:46:45 2016 -0500

    Drop the --gtk-modules argument
    
    We don't need it; the environment variable is enough.

 gtk/gtkmain.c |   19 -------------------
 1 files changed, 0 insertions(+), 19 deletions(-)
---
diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c
index 9231b02..bb8c1ee 100644
--- a/gtk/gtkmain.c
+++ b/gtk/gtkmain.c
@@ -420,26 +420,7 @@ gtk_arg_no_debug_cb (const char *key, const char *value, gpointer user_data)
 }
 #endif /* G_ENABLE_DEBUG */
 
-static gboolean
-gtk_arg_module_cb (const char *key, const char *value, gpointer user_data)
-{
-  if (value && *value)
-    {
-      if (gtk_modules_string)
-        g_string_append_c (gtk_modules_string, G_SEARCHPATH_SEPARATOR);
-      else
-        gtk_modules_string = g_string_new (NULL);
-      
-      g_string_append (gtk_modules_string, value);
-    }
-
-  return TRUE;
-}
-
 static const GOptionEntry gtk_args[] = {
-  { "gtk-module",       0, 0, G_OPTION_ARG_CALLBACK, gtk_arg_module_cb,   
-    /* Description of --gtk-module=MODULES in --help output */ N_("Load additional GTK+ modules"), 
-    /* Placeholder in --gtk-module=MODULES in --help output */ N_("MODULES") },
   { "g-fatal-warnings", 0, 0, G_OPTION_ARG_NONE, &g_fatal_warnings, 
     /* Description of --g-fatal-warnings in --help output */   N_("Make all warnings fatal"), NULL },
 #ifdef G_ENABLE_DEBUG


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]