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

@@ -4,7 +4,7 @@
#include <wx/dcclient.h>
#include <wx/dcgraph.h>
BEGIN_EVENT_TABLE(SideButton, wxPanel)
BEGIN_EVENT_TABLE(SideButton, wxWindow)
EVT_LEFT_DOWN(SideButton::mouseDown)
EVT_LEFT_UP(SideButton::mouseReleased)
EVT_PAINT(SideButton::paintEvent)