From: Pierre-Luc Beaudoin Date: Mon, 6 Jul 2009 18:19:55 +0000 (+0100) Subject: Add selection debug X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=836a39cc60d1c9749b6f73d8aa8c21cb72015e38;p=libchamplain Add selection debug --- diff --git a/champlain/champlain-debug.c b/champlain/champlain-debug.c index 825cfe0..be9b942 100644 --- a/champlain/champlain-debug.c +++ b/champlain/champlain-debug.c @@ -40,6 +40,7 @@ static GDebugKey keys[] = { { "View", CHAMPLAIN_DEBUG_VIEW }, { "Network", CHAMPLAIN_DEBUG_NETWORK }, { "Cache", CHAMPLAIN_DEBUG_CACHE }, + { "Selection", CHAMPLAIN_DEBUG_SELECTION }, { "Other", CHAMPLAIN_DEBUG_OTHER }, { 0, } }; diff --git a/champlain/champlain-debug.h b/champlain/champlain-debug.h index 1ab116f..26534e9 100644 --- a/champlain/champlain-debug.h +++ b/champlain/champlain-debug.h @@ -35,7 +35,8 @@ typedef enum CHAMPLAIN_DEBUG_VIEW = 1 << 3, CHAMPLAIN_DEBUG_NETWORK = 1 << 4, CHAMPLAIN_DEBUG_CACHE = 1 << 5, - CHAMPLAIN_DEBUG_OTHER = 1 << 6, + CHAMPLAIN_DEBUG_SELECTION = 1 << 6, + CHAMPLAIN_DEBUG_OTHER = 1 << 7, } ChamplainDebugFlags; gboolean champlain_debug_flag_is_set (ChamplainDebugFlags flag);