aboutsummaryrefslogtreecommitdiff
path: root/src/CommandDialog.cc
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-06-03 07:15:37 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-06-03 07:15:37 (GMT)
commitbfaec62d795ffe17ef82640efa06be6b056475cc (patch)
tree91905e4bc986a8b220dc38bd9b40eeb8ad37477d /src/CommandDialog.cc
parentb7e693c42518a2558d9a18b9eab6a55122ce1f43 (diff)
downloadfluxbox-bfaec62d795ffe17ef82640efa06be6b056475cc.zip
fluxbox-bfaec62d795ffe17ef82640efa06be6b056475cc.tar.bz2
remove some unnecessary architecture
Diffstat (limited to 'src/CommandDialog.cc')
-rw-r--r--src/CommandDialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CommandDialog.cc b/src/CommandDialog.cc
index 37e7bdd..3746b98 100644
--- a/src/CommandDialog.cc
+++ b/src/CommandDialog.cc
@@ -167,8 +167,8 @@ void CommandDialog::tabComplete() {
167 return; 167 return;
168 } 168 }
169 169
170 FbTk::ObjectRegistry<FbTk::CommandParser<void>::Creator>::CreatorMap::const_iterator it = FbTk::ObjectRegistry<FbTk::CommandParser<void>::Creator>::instance().creatorMap().begin(); 170 FbTk::CommandParser<void>::CreatorMap::const_iterator it = FbTk::CommandParser<void>::instance().creatorMap().begin();
171 const FbTk::ObjectRegistry<FbTk::CommandParser<void>::Creator>::CreatorMap::const_iterator it_end = FbTk::ObjectRegistry<FbTk::CommandParser<void>::Creator>::instance().creatorMap().end(); 171 const FbTk::CommandParser<void>::CreatorMap::const_iterator it_end = FbTk::CommandParser<void>::instance().creatorMap().end();
172 vector<string> matches; 172 vector<string> matches;
173 for (; it != it_end; ++it) { 173 for (; it != it_end; ++it) {
174 if ((*it).first.find(prefix) == 0) { 174 if ((*it).first.find(prefix) == 0) {