diff options
| author | MenTaLguY <mental@rydia.net> | 2007-05-10 01:18:21 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2007-05-10 01:18:21 +0000 |
| commit | c495eb1937bc8602c115c8ef79fbef751f1d92ac (patch) | |
| tree | 3fabbb3d45d4cfcd057192ba5891f10d26c90108 | |
| parent | add document serial numbers (diff) | |
| download | inkscape-c495eb1937bc8602c115c8ef79fbef751f1d92ac.tar.gz inkscape-c495eb1937bc8602c115c8ef79fbef751f1d92ac.zip | |
add configuration event type
(bzr r2990)
| -rw-r--r-- | src/debug/event.h | 1 | ||||
| -rw-r--r-- | src/debug/logger.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
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 } }; |
