gdk: Add a debug category for settings

This commit is contained in:
Benjamin Otte 2013-02-12 16:11:46 +01:00
parent 08a6f554c3
commit 8857766b5a
2 changed files with 4 additions and 2 deletions

View File

@ -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

View 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 {