]> git.eshelyaron.com Git - emacs.git/commitdiff
* gtkutil.c (my_log_handler): New function.
authorJan Djärv <jan.h.d@swipnet.se>
Mon, 3 Dec 2012 19:16:17 +0000 (20:16 +0100)
committerJan Djärv <jan.h.d@swipnet.se>
Mon, 3 Dec 2012 19:16:17 +0000 (20:16 +0100)
(xg_set_geometry): Set log handler to my_log_handler.

Fixes: debbugs:11177
src/ChangeLog
src/gtkutil.c

index 5bcd89e4ca1a14709a10220c0a14bf0fa4fad0bf..f2b65db257d40af38eeed4ed02073d75a5655cd6 100644 (file)
@@ -1,3 +1,8 @@
+2012-12-03  Jan Djärv  <jan.h.d@swipnet.se>
+
+       * gtkutil.c (my_log_handler): New function.
+       (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
+
 2012-12-03  Dmitry Antipov  <dmantipov@yandex.ru>
 
        * lisp.h (modify_region): Rename to...
index 4367b534cb9ff5c4a2c301a1283688b6c8a95b77..52a6c37b0d5dc00fb60393e82eaa7310b9518d47 100644 (file)
@@ -813,6 +813,14 @@ xg_hide_tooltip (FRAME_PTR f)
     General functions for creating widgets, resizing, events, e.t.c.
  ***********************************************************************/
 
+static void
+my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
+               const gchar *msg, gpointer user_data)
+{
+  if (!strstr (msg, "visible children"))
+    fprintf (stderr, "XX %s-WARNING **: %s\n", log_domain, msg);
+}
+
 /* Make a geometry string and pass that to GTK.  It seems this is the
    only way to get geometry position right if the user explicitly
    asked for a position when starting Emacs.
@@ -828,6 +836,7 @@ xg_set_geometry (FRAME_PTR f)
       int top = f->top_pos;
       int yneg = f->size_hint_flags & YNegative;
       char geom_str[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
+      guint id;
 
       if (xneg)
         left = -left;
@@ -840,9 +849,15 @@ xg_set_geometry (FRAME_PTR f)
                (xneg ? '-' : '+'), left,
                (yneg ? '-' : '+'), top);
 
+      /* Silence warning about visible children.  */
+      id = g_log_set_handler ("Gtk", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
+                              | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
+
       if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
                                       geom_str))
         fprintf (stderr, "Failed to parse: '%s'\n", geom_str);
+
+      g_log_remove_handler ("Gtk", id);
     }
 }