svn-id: r11118
This commit is contained in:
Max Horn 2003-11-03 23:14:21 +00:00
parent ef5e193d59
commit 2ad5fcfb7d
2 changed files with 0 additions and 3 deletions

View file

@ -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);
}

View file

@ -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