dead functions
markt markt
2 files changed,
1 insertions(+),
5 deletions(-)
M
src/FbCommandFactory.cc
→
src/FbCommandFactory.cc
@@ -186,7 +186,7 @@ else if (command == "saverc")
return new SaveResources(); else if (command == "execcommand" || command == "execute" || command == "exec") return new ExecuteCmd(arguments); // execute command on key screen - else if (command == "exit") + else if (command == "exit" || command == "quit") return new ExitFluxboxCmd(); else if (command == "setenv" || command == "export") {@@ -208,8 +208,6 @@ FbTk::StringUtil::removeTrailingWhitespace(modkey);
return new SetModKeyCmd(modkey); } - else if (command == "quit") - return new FbTk::SimpleCommand<Fluxbox>(*Fluxbox::instance(), &Fluxbox::shutdown); else if (command == "commanddialog") // run specified fluxbox command return new CommandDialogCmd(); else if (command == "bindkey")
M
src/Toolbar.hh
→
src/Toolbar.hh
@@ -95,8 +95,6 @@ void exposeEvent(XExposeEvent &ee);
void handleEvent(XEvent &event); //@} - /// enter edit mode on workspace label - void edit(); void reconfigure(); void setPlacement(Placement where);