summaryrefslogtreecommitdiffstats
path: root/src/outputlist.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-03-19 17:44:21 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-03-19 17:44:21 (GMT)
commit92fa8641e981d7a6e9f5d2c7e16e8ffbe78d06fe (patch)
treecf16207c2ec24e065b19418ceabdc18560052288 /src/outputlist.cpp
parent2c5c887899dcce964bbed13a3d022efc26fa2b46 (diff)
downloadDoxygen-92fa8641e981d7a6e9f5d2c7e16e8ffbe78d06fe.zip
Doxygen-92fa8641e981d7a6e9f5d2c7e16e8ffbe78d06fe.tar.gz
Doxygen-92fa8641e981d7a6e9f5d2c7e16e8ffbe78d06fe.tar.bz2
Release 1.1.1-20000319
Diffstat (limited to 'src/outputlist.cpp')
-rw-r--r--src/outputlist.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/outputlist.cpp b/src/outputlist.cpp
index b404210..22a8008 100644
--- a/src/outputlist.cpp
+++ b/src/outputlist.cpp
@@ -110,6 +110,16 @@ void OutputList::enableAll()
}
}
+void OutputList::disableAll()
+{
+ OutputGenerator *og=outputs->first();
+ while (og)
+ {
+ og->disable();
+ og=outputs->next();
+ }
+}
+
void OutputList::disable(OutputGenerator::OutputType o)
{
OutputGenerator *og=outputs->first();