summaryrefslogtreecommitdiff
path: root/cpp/src/slice2html/Gen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/slice2html/Gen.cpp')
-rw-r--r--cpp/src/slice2html/Gen.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/slice2html/Gen.cpp b/cpp/src/slice2html/Gen.cpp
index f6c477687ed..9047ad691e2 100644
--- a/cpp/src/slice2html/Gen.cpp
+++ b/cpp/src/slice2html/Gen.cpp
@@ -1360,19 +1360,19 @@ TOCGenerator::TOCGenerator(const Files& files, const string& header, const strin
start("table", "ExpandCollapseButton");
start("tbody");
+ start("tr");
start("td");
- _out << "<button type=\"button\" id=\"ExpandAllButton\">Expand All"
- << "<img id=\"ExpandAllButtonImage\"/></button>";
+ _out << "<button type=\"button\" id=\"ExpandAllButton\">Expand All</button>";
end();
start("td");
- _out << "<button type=\"button\" id=\"CollapseAllButton\">Collapse All"
- << "<img id=\"ExpandAllButtonImage\"/></button>";
+ _out << "<button type=\"button\" id=\"CollapseAllButton\">Collapse All</button>";
end();
end();
end();
+ end();
}
TOCGenerator::~TOCGenerator()