diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-12-27 17:35:17 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-12-27 17:35:17 +0100 |
| commit | 53090ab2a300c413257ae9aa8b5b6592a029c9b7 (patch) | |
| tree | caa5194fed4a0dbec90b5f3cd94b7683b679e093 /src/gui.cpp | |
| parent | d6e8d80a8f921d12562ad39b0a4bde0d34036448 (diff) | |
Cleaning code
Diffstat (limited to 'src/gui.cpp')
| -rw-r--r-- | src/gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui.cpp b/src/gui.cpp index 1077a2e..ed6941e 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -539,7 +539,7 @@ TabBase_TabGames::TabBase_TabGames( wxWindow* parent, wxWindowID id, const wxPoi main_sizer->Add( top_sizer, 0, wxEXPAND, 5 ); - game_list = new wxListCtrl( this, wxID_ANY, wxDefaultPosition, wxSize( -1,-1 ), wxLC_REPORT ); + game_list = new wxListCtrl( this, ID_TABGAMES_GAME_LIST, wxDefaultPosition, wxSize( -1,-1 ), wxLC_REPORT ); main_sizer->Add( game_list, 1, wxALL|wxEXPAND, 5 ); wxBoxSizer* bottom_sizer; @@ -616,7 +616,7 @@ TabBase_TabImport::TabBase_TabImport( wxWindow* parent, wxWindowID id, const wxP import_from_db_button = new wxButton( this, ID_IMPORT_SELECTION, wxT("Import Selection"), wxDefaultPosition, wxDefaultSize, 0 ); databases_sizer->Add( import_from_db_button, 0, wxALL|wxEXPAND, 5 ); - m_button16 = new wxButton( this, ID_IMPORT_DB, wxT("Import all games"), wxDefaultPosition, wxDefaultSize, 0 ); + m_button16 = new wxButton( this, ID_IMPORT_DB, wxT("Import entire database"), wxDefaultPosition, wxDefaultSize, 0 ); databases_sizer->Add( m_button16, 0, wxALL|wxEXPAND, 5 ); |
