diff options
author | mathias <mathias> | 2004-11-30 01:26:00 (GMT) |
---|---|---|
committer | mathias <mathias> | 2004-11-30 01:26:00 (GMT) |
commit | c8d71542dc266fe533a78ce657757e468ef8d84f (patch) | |
tree | ab33e74dc6a04a7378fc6baf47c6c3b29bb867e9 /src/FbCommandFactory.cc | |
parent | 839d5b6ad87e7766e558fda23b2636cadeb3d527 (diff) | |
download | fluxbox_pavel-c8d71542dc266fe533a78ce657757e468ef8d84f.zip fluxbox_pavel-c8d71542dc266fe533a78ce657757e468ef8d84f.tar.bz2 |
adds "kill" to the windowmenu
closes #1075142
Diffstat (limited to 'src/FbCommandFactory.cc')
-rw-r--r-- | src/FbCommandFactory.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbCommandFactory.cc b/src/FbCommandFactory.cc index 8ff92ab..5c0794e 100644 --- a/src/FbCommandFactory.cc +++ b/src/FbCommandFactory.cc | |||
@@ -284,7 +284,7 @@ FbTk::Command *FbCommandFactory::stringToCommand(const std::string &command, | |||
284 | return new SendToNextWorkspaceCmd(atoi(arguments.c_str())); | 284 | return new SendToNextWorkspaceCmd(atoi(arguments.c_str())); |
285 | else if (command == "sendtoprevworkspace") | 285 | else if (command == "sendtoprevworkspace") |
286 | return new SendToPrevWorkspaceCmd(atoi(arguments.c_str())); | 286 | return new SendToPrevWorkspaceCmd(atoi(arguments.c_str())); |
287 | else if (command == "killwindow") | 287 | else if (command == "killwindow" || command == "kill") |
288 | return new KillWindowCmd(); | 288 | return new KillWindowCmd(); |
289 | else if (command == "nexttab") | 289 | else if (command == "nexttab") |
290 | return new CurrentWindowCmd(&FluxboxWindow::nextClient); | 290 | return new CurrentWindowCmd(&FluxboxWindow::nextClient); |