ProgressDialog: Fix DoSetSize using incorrect superclass (#11095)

Fix ProgressDialog using incorrect superclass
This commit is contained in:
frmdstryr
2025-10-22 11:49:35 -04:00
committed by GitHub
parent 0e30dab638
commit 4a05ac547a

View File

@@ -813,7 +813,7 @@ void ProgressDialog::DoSetSize(int x, int y, int width, int height, int sizeFlag
// m_block_right->SetPosition(wxPoint(PROGRESSDIALOG_GAUGE_SIZE.x - 2, 0)); // m_block_right->SetPosition(wxPoint(PROGRESSDIALOG_GAUGE_SIZE.x - 2, 0));
//} //}
#endif #endif
wxWindow::DoSetSize(x, y, width, height, sizeFlags); wxDialog::DoSetSize(x, y, width, height, sizeFlags);
} }
void ProgressDialog::DisableOtherWindows() void ProgressDialog::DisableOtherWindows()