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

@@ -3,7 +3,7 @@
#include <wx/dcgraph.h>
#include <wx/dcclient.h>
BEGIN_EVENT_TABLE(RoundedRectangle, wxPanel)
BEGIN_EVENT_TABLE(RoundedRectangle, wxWindow)
EVT_PAINT(RoundedRectangle::OnPaint)
END_EVENT_TABLE()