aboutsummaryrefslogtreecommitdiff
path: root/src/CommandParser.cc
diff options
context:
space:
mode:
authorsimonb <simonb>2006-04-25 02:19:04 (GMT)
committersimonb <simonb>2006-04-25 02:19:04 (GMT)
commit3707b74c40256c09465171d39e2c4d95aeaefb0e (patch)
treedcb835e0ee929b65b53d0c9d0538167f1840245b /src/CommandParser.cc
parentfae88b329c63c16755f2c9b7a5a655a1414ab10f (diff)
downloadfluxbox-3707b74c40256c09465171d39e2c4d95aeaefb0e.zip
fluxbox-3707b74c40256c09465171d39e2c4d95aeaefb0e.tar.bz2
fix a bunch of comments, make default textures obvious
Thanks Jonas Koelker
Diffstat (limited to 'src/CommandParser.cc')
-rw-r--r--src/CommandParser.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CommandParser.cc b/src/CommandParser.cc
index 1f8218e..95630d0 100644
--- a/src/CommandParser.cc
+++ b/src/CommandParser.cc
@@ -45,7 +45,7 @@ CommandFactory::~CommandFactory() {
45 45
46} 46}
47 47
48void CommandFactory::addCommand(const string &command_name) { 48void CommandFactory::addCommand(const std::string &command_name) {
49 CommandParser::instance().associateCommand(command_name, *this); 49 CommandParser::instance().associateCommand(command_name, *this);
50} 50}
51 51
@@ -62,7 +62,7 @@ CommandParser &CommandParser::instance() {
62 return *s_singleton; 62 return *s_singleton;
63} 63}
64 64
65FbTk::Command *CommandParser::parseLine(const string &line) { 65FbTk::Command *CommandParser::parseLine(const std::string &line) {
66 66
67 // parse arguments and command 67 // parse arguments and command
68 string command = line; 68 string command = line;