all repos — fluxbox @ 91ab82513b7638825ca7231fa35f52f66f5aaed3

custom fork of the fluxbox windowmanager

dead functions
markt markt
commit

91ab82513b7638825ca7231fa35f52f66f5aaed3

parent

301665024da21a345b7ff682fed1d94a9e5de36c

2 files changed, 1 insertions(+), 5 deletions(-)

jump to
M src/FbCommandFactory.ccsrc/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.hhsrc/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);