debug: remove GdkRGB debuggability

GdkRGB is on its way out, so there's no need to have a debugging
category for it.
This commit is contained in:
Benjamin Otte 2010-07-13 02:53:51 +02:00
parent 119d48c89b
commit 548ebc29e5
2 changed files with 9 additions and 14 deletions

View File

@ -71,7 +71,6 @@ static const GDebugKey gdk_debug_keys[] = {
{"xim", GDK_DEBUG_XIM},
{"nograbs", GDK_DEBUG_NOGRABS},
{"colormap", GDK_DEBUG_COLORMAP},
{"gdkrgb", GDK_DEBUG_GDKRGB},
{"gc", GDK_DEBUG_GC},
{"pixmap", GDK_DEBUG_PIXMAP},
{"image", GDK_DEBUG_IMAGE},
@ -266,9 +265,6 @@ gdk_parse_args (int *argc,
}
g_option_context_free (option_context);
if (_gdk_debug_flags && GDK_DEBUG_GDKRGB)
gdk_rgb_set_verbose (TRUE);
GDK_NOTE (MISC, g_message ("progname: \"%s\"", g_get_prgname ()));
}

View File

@ -77,16 +77,15 @@ typedef enum {
GDK_DEBUG_XIM = 1 << 3,
GDK_DEBUG_NOGRABS = 1 << 4,
GDK_DEBUG_COLORMAP = 1 << 5,
GDK_DEBUG_GDKRGB = 1 << 6,
GDK_DEBUG_GC = 1 << 7,
GDK_DEBUG_PIXMAP = 1 << 8,
GDK_DEBUG_IMAGE = 1 << 9,
GDK_DEBUG_INPUT = 1 <<10,
GDK_DEBUG_CURSOR = 1 <<11,
GDK_DEBUG_MULTIHEAD = 1 <<12,
GDK_DEBUG_XINERAMA = 1 <<13,
GDK_DEBUG_DRAW = 1 <<14,
GDK_DEBUG_EVENTLOOP = 1 <<15
GDK_DEBUG_GC = 1 << 6,
GDK_DEBUG_PIXMAP = 1 << 7,
GDK_DEBUG_IMAGE = 1 << 8,
GDK_DEBUG_INPUT = 1 << 9,
GDK_DEBUG_CURSOR = 1 <<10,
GDK_DEBUG_MULTIHEAD = 1 <<11,
GDK_DEBUG_XINERAMA = 1 <<12,
GDK_DEBUG_DRAW = 1 <<13,
GDK_DEBUG_EVENTLOOP = 1 <<14
} GdkDebugFlag;
extern GList *_gdk_default_filters;