Fix event table baseclass error (#9777)

This commit is contained in:
Noisyfox
2025-06-01 22:49:54 +08:00
committed by GitHub
parent b819c7f55b
commit b0776eb107
8 changed files with 8 additions and 8 deletions

View File

@@ -7,7 +7,7 @@
wxDEFINE_EVENT(wxCUSTOMEVT_SET_TEMP_FINISH, wxCommandEvent);
BEGIN_EVENT_TABLE(ProgressBar, wxPanel)
BEGIN_EVENT_TABLE(ProgressBar, wxWindow)
EVT_PAINT(ProgressBar::paintEvent)
END_EVENT_TABLE()