diff options
author | rathnor <rathnor> | 2003-07-01 01:49:13 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-07-01 01:49:13 (GMT) |
commit | 015c61ede0661fe4e563052b4d8418ac6223e843 (patch) | |
tree | b5c5051cf3bd594ebbb9bb977ff09af308ea9b00 /src/CommandParser.cc | |
parent | 17665c37f7a19cf21526bc1ff1654d26446956a2 (diff) | |
download | fluxbox-015c61ede0661fe4e563052b4d8418ac6223e843.zip fluxbox-015c61ede0661fe4e563052b4d8418ac6223e843.tar.bz2 |
make it work... (fix some small issues)
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 dc2f297..1355cf9 100644 --- a/src/CommandParser.cc +++ b/src/CommandParser.cc | |||
@@ -20,7 +20,7 @@ | |||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
21 | // DEALINGS IN THE SOFTWARE. | 21 | // DEALINGS IN THE SOFTWARE. |
22 | 22 | ||
23 | // $Id: CommandParser.cc,v 1.1 2003/06/30 14:44:43 fluxgen Exp $ | 23 | // $Id: CommandParser.cc,v 1.2 2003/07/01 01:49:09 rathnor Exp $ |
24 | 24 | ||
25 | #include "CommandParser.hh" | 25 | #include "CommandParser.hh" |
26 | 26 | ||
@@ -79,7 +79,7 @@ FbTk::Command *CommandParser::parseLine(const std::string &line) { | |||
79 | command<<"] arguments=["<<arguments<<"]"<<endl; | 79 | command<<"] arguments=["<<arguments<<"]"<<endl; |
80 | #endif // DEBUG | 80 | #endif // DEBUG |
81 | 81 | ||
82 | FbTk::StringUtil::toLower(command); | 82 | command = FbTk::StringUtil::toLower(command); |
83 | 83 | ||
84 | // we didn't find any matching command in default commands, | 84 | // we didn't find any matching command in default commands, |
85 | // so we search in the command creators modules for a matching command string | 85 | // so we search in the command creators modules for a matching command string |