mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 01:56:28 +02:00
Change game list order
This commit is contained in:
parent
8e01d5b96a
commit
92ec92a210
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ GameListManager::GameListManager(wxListCtrl *game_list): game_list(game_list), g
|
|||
|
||||
void GameListManager::AddGame(CType W,CType B,CType Evt,CType Rnd, CType Res, CType Eco){
|
||||
long index =
|
||||
game_list->InsertItem(0, std::to_string(game_counter)); // want this for col. 1
|
||||
game_list->InsertItem(game_counter, std::to_string(game_counter)); // want this for col. 1
|
||||
game_list->SetItem(index, 1, W);
|
||||
game_list->SetItem(index, 2, B);
|
||||
game_list->SetItem(index, 3, Evt);
|
||||
|
|
Loading…
Add table
Reference in a new issue