]> Pileus Git - ~andy/gtk/commitdiff
gdk: Add a debug category for settings
authorBenjamin Otte <otte@redhat.com>
Tue, 12 Feb 2013 15:11:46 +0000 (16:11 +0100)
committerBenjamin Otte <otte@redhat.com>
Tue, 19 Feb 2013 13:33:36 +0000 (14:33 +0100)
gdk/gdk.c
gdk/gdkinternals.h

index babe08028d6b3a108105546642349d3bb65073a9..437ecf99d0cd8446505bf380a4a2ed294e90b940 100644 (file)
--- a/gdk/gdk.c
+++ b/gdk/gdk.c
@@ -139,7 +139,8 @@ static const GDebugKey gdk_debug_keys[] = {
   {"xinerama",      GDK_DEBUG_XINERAMA},
   {"draw",          GDK_DEBUG_DRAW},
   {"eventloop",     GDK_DEBUG_EVENTLOOP},
-  {"frames",        GDK_DEBUG_FRAMES}
+  {"frames",        GDK_DEBUG_FRAMES},
+  {"settings",      GDK_DEBUG_SETTINGS}
 };
 
 static gboolean
index 4a91b7709f9a31d48fc02e96394b185d0782f549..a187a03106578e00059fb3de68617717cea91bd8 100644 (file)
@@ -83,7 +83,8 @@ typedef enum {
   GDK_DEBUG_XINERAMA      = 1 <<  8,
   GDK_DEBUG_DRAW          = 1 <<  9,
   GDK_DEBUG_EVENTLOOP     = 1 << 10,
-  GDK_DEBUG_FRAMES        = 1 << 11
+  GDK_DEBUG_FRAMES        = 1 << 11,
+  GDK_DEBUG_SETTINGS      = 1 << 12
 } GdkDebugFlag;
 
 typedef enum {