diff options
author | simonb <simonb> | 2006-04-25 02:19:04 (GMT) |
---|---|---|
committer | simonb <simonb> | 2006-04-25 02:19:04 (GMT) |
commit | 3707b74c40256c09465171d39e2c4d95aeaefb0e (patch) | |
tree | dcb835e0ee929b65b53d0c9d0538167f1840245b /src/CommandParser.cc | |
parent | fae88b329c63c16755f2c9b7a5a655a1414ab10f (diff) | |
download | fluxbox-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.cc | 4 |
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 | ||
48 | void CommandFactory::addCommand(const string &command_name) { | 48 | void 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 | ||
65 | FbTk::Command *CommandParser::parseLine(const string &line) { | 65 | FbTk::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; |