summaryrefslogtreecommitdiff
path: root/lib/Menu.cc
diff options
context:
space:
mode:
authorPixel <Pixel>2001-12-16 13:42:22 +0000
committerPixel <Pixel>2001-12-16 13:42:22 +0000
commit82be68107b19c270b0c4546cffaf97571ad231d3 (patch)
treef4d9c15f2d78259731b4a28309bc1a2267464d0e /lib/Menu.cc
parentb9c5376bb1b0bf8e9bd0589e192220dfe0892bd5 (diff)
-Debug
Diffstat (limited to 'lib/Menu.cc')
-rw-r--r--lib/Menu.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Menu.cc b/lib/Menu.cc
index f730e5b..05d7088 100644
--- a/lib/Menu.cc
+++ b/lib/Menu.cc
@@ -15,9 +15,9 @@ Task * Menu::Do(Variables * v, Variables *, Handle * h) {
SendHead(b);
(*b) << "<center><TABLE BORDER=0>" << endnl;
for (i = 0; i < nba; i++) {
- (*b) << "<TR BGCOLOR=\"#" << (f ? "dddddd" : "cccccc") << "\"><TD ALIGN=\"center\">" << (i + 1) << "</TD><TD>"
- "<A HREF=\"/bin/" << (la[i] ? la[i]->GetURL() : "start") << "\">"
- << lt[i] << "</A></TD></TR>" << endnl;
+ (*b) << "<TR BGCOLOR=\"#" << (f ? "dddddd" : "cccccc") << "\"><TD ALIGN=\"center\">" << (i + 1) << "</TD><TD>";
+ (*b) << "<A HREF=\"/bin/" << (la[i] ? la[i]->GetURL() : "start") << "\">";
+ (*b) << lt[i] << "</A></TD></TR>" << endnl;
f = f ? 0 : 1;
}
(*b) << "</TABLE></center>" << endnl;