aboutsummaryrefslogtreecommitdiff
path: root/src/FbCommandFactory.cc
diff options
context:
space:
mode:
authormathias <mathias>2005-05-12 20:16:45 (GMT)
committermathias <mathias>2005-05-12 20:16:45 (GMT)
commit64336d4cec99202a7740fc062190c1f1cfa577db (patch)
treed8ebe3171594a64c2d25fac2065b3cc8c189e8e6 /src/FbCommandFactory.cc
parent6280b9de0545a8af80ea2f54f5ebe4492a690dbf (diff)
downloadfluxbox-64336d4cec99202a7740fc062190c1f1cfa577db.zip
fluxbox-64336d4cec99202a7740fc062190c1f1cfa577db.tar.bz2
llittle rewrite for the FbTk_istringstream usage.. was needed coz gcc2.95.x
systems had problems before. with this change fluxbox should compile on such old compilers.
Diffstat (limited to 'src/FbCommandFactory.cc')
-rw-r--r--src/FbCommandFactory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbCommandFactory.cc b/src/FbCommandFactory.cc
index 8279edb..ec91a86 100644
--- a/src/FbCommandFactory.cc
+++ b/src/FbCommandFactory.cc
@@ -358,7 +358,7 @@ FbTk::Command *FbCommandFactory::stringToCommand(const std::string &command,
358 // 358 //
359 else if (command == "deiconify") { 359 else if (command == "deiconify") {
360 360
361 FbTk_istringstream iss(arguments); 361 FbTk_istringstream iss(arguments.c_str());
362 string mode; 362 string mode;
363 string d; 363 string d;
364 DeiconifyCmd::Destination dest; 364 DeiconifyCmd::Destination dest;