From: mental Date: Thu, 10 May 2007 01:18:21 +0000 (+0000) Subject: add configuration event type X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4c6e0eeeba5601799ce24efe9f0815d37a2c114b;p=inkscape.git add configuration event type --- diff --git a/src/debug/event.h b/src/debug/event.h index 2d91ea9f5..9a6954707 100644 --- a/src/debug/event.h +++ b/src/debug/event.h @@ -32,6 +32,7 @@ public: EXTENSION, FINALIZERS, INTERACTION, + CONFIGURATION, OTHER }; enum { N_CATEGORIES=OTHER+1 }; diff --git a/src/debug/logger.cpp b/src/debug/logger.cpp index 05064f84e..5d62f9a88 100644 --- a/src/debug/logger.cpp +++ b/src/debug/logger.cpp @@ -106,6 +106,7 @@ static void set_category_mask(bool * const mask, char const *filter) { { "EXTENSION", Event::EXTENSION }, { "FINALIZERS", Event::FINALIZERS }, { "INTERACTION", Event::INTERACTION }, + { "CONFIGURATION", Event::CONFIGURATION }, { "OTHER", Event::OTHER }, { NULL, Event::OTHER } };