aboutsummaryrefslogtreecommitdiff
path: root/src/CommandParser.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-11 13:47:51 (GMT)
committerfluxgen <fluxgen>2003-08-11 13:47:51 (GMT)
commit48de057b486f33013917593a389027600b592de4 (patch)
treea085a6a81d96ec9edb149eb1f04789632cc282c4 /src/CommandParser.cc
parentc8c5072fd1a542cc3783cb5b32e5e4b68e45efe7 (diff)
downloadfluxbox-48de057b486f33013917593a389027600b592de4.zip
fluxbox-48de057b486f33013917593a389027600b592de4.tar.bz2
removed debugmsg
Diffstat (limited to 'src/CommandParser.cc')
-rw-r--r--src/CommandParser.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/CommandParser.cc b/src/CommandParser.cc
index aebb99a..baa5e7a 100644
--- a/src/CommandParser.cc
+++ b/src/CommandParser.cc
@@ -20,14 +20,13 @@
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.3 2003/07/01 09:04:52 fluxgen Exp $ 23// $Id: CommandParser.cc,v 1.4 2003/08/11 13:47:51 fluxgen Exp $
24 24
25#include "CommandParser.hh" 25#include "CommandParser.hh"
26 26
27#include "StringUtil.hh" 27#include "StringUtil.hh"
28 28
29#include <vector> 29#include <vector>
30#include <iostream>
31using namespace std; 30using namespace std;
32 31
33namespace { 32namespace {
@@ -74,10 +73,6 @@ FbTk::Command *CommandParser::parseLine(const std::string &line) {
74 } 73 }
75 74
76 // now we have parsed command and arguments 75 // now we have parsed command and arguments
77#ifdef DEBUG
78 cerr<<__FILE__<<"("<<__FUNCTION__<<"): command = ["<<
79 command<<"] arguments=["<<arguments<<"]"<<endl;
80#endif // DEBUG
81 76
82 command = FbTk::StringUtil::toLower(command); 77 command = FbTk::StringUtil::toLower(command);
83 78