mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 01:56:28 +02:00
Improve game import
This commit is contained in:
parent
b1a82ff568
commit
2068f8c6c3
1 changed files with 6 additions and 4 deletions
|
@ -5,10 +5,12 @@
|
|||
AppendGameDialog::AppendGameDialog(wxWindow *parent, GameBase *base)
|
||||
: AppendGameDialogBF(parent), base(base) {
|
||||
|
||||
tinfos = MAINWIN->ListTabInfos();
|
||||
for (TabInfos *i : tinfos) {
|
||||
wxWindow *win = dynamic_cast<wxWindow *>(i);
|
||||
game_list->Append(win->GetLabel());
|
||||
for (TabInfos *i : MAINWIN->ListTabInfos()) {
|
||||
if (i->type == TabInfos::GAME || i->type == TabInfos::BASE) {
|
||||
wxWindow *win = dynamic_cast<wxWindow *>(i);
|
||||
game_list->Append(win->GetLabel());
|
||||
tinfos.push_back(i);
|
||||
}
|
||||
}
|
||||
|
||||
Bind(wxEVT_BUTTON, &AppendGameDialog::OnCancel, this,
|
||||
|
|
Loading…
Add table
Reference in a new issue