aboutsummaryrefslogtreecommitdiff
path: root/gui/launcher.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2007-07-17 21:59:44 +0000
committerFilippos Karapetis2007-07-17 21:59:44 +0000
commitd2d49e224b5aa0839a5636f1c751062dc9a613c7 (patch)
tree6a58b3f6c818fee3ef2cb5222de9ff12101ca53a /gui/launcher.cpp
parentd04b653378d92facccf597f80fb3911d7d22f5c9 (diff)
downloadscummvm-rg350-d2d49e224b5aa0839a5636f1c751062dc9a613c7.tar.gz
scummvm-rg350-d2d49e224b5aa0839a5636f1c751062dc9a613c7.tar.bz2
scummvm-rg350-d2d49e224b5aa0839a5636f1c751062dc9a613c7.zip
Implemented FR #1754616 - "GUI: Add option to delete games using the "Del" Key"
svn-id: r28131
Diffstat (limited to 'gui/launcher.cpp')
-rw-r--r--gui/launcher.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp
index 712cc78883..59404dfd74 100644
--- a/gui/launcher.cpp
+++ b/gui/launcher.cpp
@@ -839,6 +839,9 @@ void LauncherDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 dat
ConfMan.setActiveDomain(_domains[item]);
close();
break;
+ case kListItemRemovalRequestCmd:
+ removeGame(item);
+ break;
case kListSelectionChangedCmd:
updateButtons();
break;