aboutsummaryrefslogtreecommitdiff
path: root/gui/message.cpp
diff options
context:
space:
mode:
authorMax Horn2004-08-11 21:49:58 +0000
committerMax Horn2004-08-11 21:49:58 +0000
commitee70457667b7480226b3af3bf3047e098a0344c5 (patch)
treee05bab6e875610e014a821826c5a1a66a09ff5fe /gui/message.cpp
parent39137da10d4c8c18c0c0a6b30351459d1654a6c2 (diff)
downloadscummvm-rg350-ee70457667b7480226b3af3bf3047e098a0344c5.tar.gz
scummvm-rg350-ee70457667b7480226b3af3bf3047e098a0344c5.tar.bz2
scummvm-rg350-ee70457667b7480226b3af3bf3047e098a0344c5.zip
Fix for bug #1007093 (GUI: removing game configuration from Launcher buggy); moral: either document how things work, or at least provide well named constants for certain return values... using the cheap way out here, i.e. method (b) :-)
svn-id: r14557
Diffstat (limited to 'gui/message.cpp')
-rw-r--r--gui/message.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/gui/message.cpp b/gui/message.cpp
index 206f145cdf..95b6ecfaf4 100644
--- a/gui/message.cpp
+++ b/gui/message.cpp
@@ -142,11 +142,12 @@ int MessageDialog::addLine(StringList &lines, const char *line, int size) {
}
void MessageDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 data) {
+ // FIXME: It's a really bad thing that we use two arbitrary constants
if (cmd == kOkCmd) {
- setResult(1);
+ setResult(kMessageOK);
close();
} else if (cmd == kCancelCmd) {
- setResult(2);
+ setResult(kMessageCancel);
close();
} else {
Dialog::handleCommand(sender, cmd, data);