dead functions

This commit is contained in:
markt 2006-06-30 01:37:46 +00:00
parent 301665024d
commit 91ab82513b
2 changed files with 1 additions and 5 deletions

View file

@ -186,7 +186,7 @@ FbTk::Command *FbCommandFactory::stringToCommand(const std::string &command,
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::Command *FbCommandFactory::stringToCommand(const std::string &command,
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")

View file

@ -95,8 +95,6 @@ public:
void handleEvent(XEvent &event);
//@}
/// enter edit mode on workspace label
void edit();
void reconfigure();
void setPlacement(Placement where);