aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2003-11-03 23:14:21 +0000
committerMax Horn2003-11-03 23:14:21 +0000
commit2ad5fcfb7d9e5859ce2f220ac7d8813ac0c29488 (patch)
tree59ba338e4b42fc483b2bafe5490148af4496bb19 /gui
parentef5e193d5993db3a807580f473ea25128b09b7d8 (diff)
downloadscummvm-rg350-2ad5fcfb7d9e5859ce2f220ac7d8813ac0c29488.tar.gz
scummvm-rg350-2ad5fcfb7d9e5859ce2f220ac7d8813ac0c29488.tar.bz2
scummvm-rg350-2ad5fcfb7d9e5859ce2f220ac7d8813ac0c29488.zip
cleanup
svn-id: r11118
Diffstat (limited to 'gui')
-rw-r--r--gui/chooser.cpp2
-rw-r--r--gui/chooser.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/gui/chooser.cpp b/gui/chooser.cpp
index dbcde18441..646a3fb7ae 100644
--- a/gui/chooser.cpp
+++ b/gui/chooser.cpp
@@ -57,8 +57,6 @@ void ChooserDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 data
break;
case kCloseCmd:
setResult(-1);
- close();
- break;
default:
Dialog::handleCommand(sender, cmd, data);
}
diff --git a/gui/chooser.h b/gui/chooser.h
index 25b0c703e4..f790438528 100644
--- a/gui/chooser.h
+++ b/gui/chooser.h
@@ -43,7 +43,6 @@ public:
ChooserDialog(const String &title, const StringList &list, const String &buttonLabel = "Choose", int height = 140);
virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
- ListWidget *getListWidget() { return _list; } // HACK
};
#endif