diff options
Diffstat (limited to 'addon')
-rw-r--r-- | addon/configgen/configgen.cpp | 8 | ||||
-rw-r--r-- | addon/doxywizard/doxywizard.pro.in | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/addon/configgen/configgen.cpp b/addon/configgen/configgen.cpp index 557f70d..1dcc7b1 100644 --- a/addon/configgen/configgen.cpp +++ b/addon/configgen/configgen.cpp @@ -905,6 +905,14 @@ void init() "classes or files whose names only differ in case and if your file system \n" "supports case sensitive file names. \n" ); + ConfigBool::add( "hideScopeNames", + "HIDE_SCOPE_NAMES", + "FALSE", + "hide the name of the scope.", + "If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen \n" + "will show members with their full class and namespace scopes in the \n" + "documentation. If set to YES the scope will be hidden. \n" + ); ConfigBool::add( "verbatimHeaderFlag", "VERBATIM_HEADERS", "TRUE", diff --git a/addon/doxywizard/doxywizard.pro.in b/addon/doxywizard/doxywizard.pro.in index 36b9639..3802d6f 100644 --- a/addon/doxywizard/doxywizard.pro.in +++ b/addon/doxywizard/doxywizard.pro.in @@ -49,4 +49,4 @@ OBJECTS_DIR = obj MOC_DIR = moc # extra C++ compiler options -TMAKE_CXXFLAGS = -DDOXYWIZARD +TMAKE_CXXFLAGS += -DDOXYWIZARD |