1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-24 00:18:07 +02:00

ASlider.cpp: correction to event table

Fix error in ASlider's event table spotted by Paul. The error wasn't causing any known problems.
This commit is contained in:
David Bailes 2019-04-04 15:14:04 +01:00
parent 2e1fe80601
commit c531fde6b8

View File

@ -1507,7 +1507,7 @@ void LWSlider::SetEnabled(bool enabled)
// ASlider
//
BEGIN_EVENT_TABLE(ASlider, wxWindow)
BEGIN_EVENT_TABLE(ASlider, wxPanel)
EVT_KEY_DOWN(ASlider::OnKeyDown)
EVT_MOUSE_EVENTS(ASlider::OnMouseEvent)
EVT_MOUSE_CAPTURE_LOST(ASlider::OnCaptureLost)