mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 01:56:28 +02:00
Debug MainWindow pointers and casts
This commit is contained in:
parent
f754a93f9f
commit
79cf6b2634
1 changed files with 4 additions and 4 deletions
|
@ -65,7 +65,7 @@ MainWindow::MainWindow()
|
|||
|
||||
void MainWindow::OnAuiNotebookPageCheck(wxAuiNotebookEvent& event){
|
||||
int selection=event.GetSelection();
|
||||
TabInfos *t=dynamic_cast<TabInfos *>(notebook->GetPage(selection));
|
||||
TabInfos *t=(TabInfos*)notebook->GetPage(selection)->GetClientData();
|
||||
if(t->is_dirty){
|
||||
wxMessageDialog *dial = new wxMessageDialog(NULL,
|
||||
wxT("This tab contains data that are not saved. Are you sure you want to close it?"), wxT("Information"),
|
||||
|
@ -215,7 +215,7 @@ void MainWindow::OpenSettings() {
|
|||
|
||||
void MainWindow::ApplyPreferences() {
|
||||
for (int i = 0; i < notebook->GetPageCount(); i++) {
|
||||
TabInfos *infos = dynamic_cast<TabInfos *>(notebook->GetPage(i));
|
||||
TabInfos *infos = (TabInfos*)(notebook->GetPage(i))->GetClientData();
|
||||
infos->ApplyPreferences();
|
||||
}
|
||||
}
|
||||
|
@ -245,7 +245,7 @@ void MainWindow::NewGame(bool useFen) {
|
|||
}
|
||||
|
||||
void MainWindow::OnPageChange(wxAuiNotebookEvent &event) {
|
||||
TabInfos *infos = dynamic_cast<TabInfos *>(notebook->GetCurrentPage());
|
||||
TabInfos *infos = (TabInfos*)(notebook->GetCurrentPage())->GetClientData();
|
||||
if (infos->type != TabInfos::GAME) {
|
||||
for (short i = 10; i < 20; i++) {
|
||||
if (menu_game->FindChildItem(i) != NULL) {
|
||||
|
@ -256,7 +256,7 @@ void MainWindow::OnPageChange(wxAuiNotebookEvent &event) {
|
|||
}
|
||||
|
||||
void MainWindow::OnRefreshTabTitle(wxCommandEvent &event) {
|
||||
GameTab *win = (GameTab*)event.GetEventObject();
|
||||
wxWindow *win = (wxWindow*)event.GetEventObject();
|
||||
int page = notebook->GetPageIndex(win);
|
||||
if (page != wxNOT_FOUND) {
|
||||
notebook->SetPageText(page, win->GetLabel());
|
||||
|
|
Loading…
Add table
Reference in a new issue