diff options
Diffstat (limited to 'cpp/src/slice2docbook/Gen.cpp')
-rw-r--r-- | cpp/src/slice2docbook/Gen.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/cpp/src/slice2docbook/Gen.cpp b/cpp/src/slice2docbook/Gen.cpp index 6d9cf83478b..81fd645ab83 100644 --- a/cpp/src/slice2docbook/Gen.cpp +++ b/cpp/src/slice2docbook/Gen.cpp @@ -19,10 +19,9 @@ using namespace std; using namespace Slice; using namespace IceUtil; -Slice::Gen::Gen(const string& name, const string& file, bool standAlone, bool noGlobals, bool chapter, +Slice::Gen::Gen(const string& name, const string& file, bool standAlone, bool chapter, bool noIndex, bool sortFields) : _standAlone(standAlone), - _noGlobals(noGlobals), _noIndex(noIndex), _sortFields(sortFields) { @@ -82,14 +81,6 @@ Slice::Gen::visitUnitStart(const UnitPtr& p) printHeader(); } - if(!_noGlobals && !_noIndex) - { - start(_chapter, "Global Module", false); -// start("section", "Overview", false); - visitContainer(p); -// end(); - } - return true; } |