Fix event table baseclass error (#9777)

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

View File

@@ -8,7 +8,7 @@
wxDEFINE_EVENT(wxCUSTOMEVT_SET_TEMP_FINISH, wxCommandEvent);
BEGIN_EVENT_TABLE(TempInput, wxPanel)
BEGIN_EVENT_TABLE(TempInput, StaticBox)
EVT_MOTION(TempInput::mouseMoved)
EVT_ENTER_WINDOW(TempInput::mouseEnterWindow)
EVT_LEAVE_WINDOW(TempInput::mouseLeaveWindow)