aboutsummaryrefslogtreecommitdiff
path: root/src/gui.cpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-12-25 11:13:05 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-12-25 11:13:05 +0100
commit4ffba108e367926f1c254bb1e2f07b6dbace4f32 (patch)
treedbd0cb1795622da335035895c1a03c30ed037eeb /src/gui.cpp
parent1293b59ed55423671dc204d3cb09822c9c599e55 (diff)
Update the db import game feature
Diffstat (limited to 'src/gui.cpp')
-rw-r--r--src/gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui.cpp b/src/gui.cpp
index 3169b1e..7390b73 100644
--- a/src/gui.cpp
+++ b/src/gui.cpp
@@ -581,8 +581,8 @@ TabBase_TabImport::TabBase_TabImport( wxWindow* parent, wxWindowID id, const wxP
from_game_label->Wrap( -1 );
top_sizer->Add( from_game_label, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
- m_comboBox1 = new wxComboBox( this, wxID_ANY, wxT("Combo!"), wxDefaultPosition, wxDefaultSize, 0, NULL, 0 );
- top_sizer->Add( m_comboBox1, 100, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
+ opened_game_list = new wxComboBox( this, wxID_ANY, wxT("No game opened"), wxDefaultPosition, wxDefaultSize, 0, NULL, 0 );
+ top_sizer->Add( opened_game_list, 100, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
import_from_game_button = new wxButton( this, wxID_ANY, wxT("Import"), wxDefaultPosition, wxDefaultSize, 0 );
top_sizer->Add( import_from_game_button, 0, wxALL, 5 );