From: Robert Roebling Date: Mon, 6 Dec 2004 23:41:28 +0000 (+0000) Subject: Compilation. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4ba64bdeb2aeadee4b0abcfddf2e227088a37b16 Compilation. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30882 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/scroll/scroll.cpp b/samples/scroll/scroll.cpp index f4dd64f70e..4a9e3aac09 100644 --- a/samples/scroll/scroll.cpp +++ b/samples/scroll/scroll.cpp @@ -630,10 +630,10 @@ void MyScrolledWindowSmart::OnDraw(wxDC& dc) // ---------------------------------------------------------------------------- BEGIN_EVENT_TABLE(MyAutoTimedScrollingWindow, wxScrolledWindow) - EVT_LEFT_DOWN(OnMouseLeftDown) - EVT_LEFT_UP(OnMouseLeftUp) - EVT_MOTION(OnMouseMove) - EVT_SCROLLWIN(OnScroll) + EVT_LEFT_DOWN(MyAutoTimedScrollingWindow::OnMouseLeftDown) + EVT_LEFT_UP(MyAutoTimedScrollingWindow::OnMouseLeftUp) + EVT_MOTION(MyAutoTimedScrollingWindow::OnMouseMove) + EVT_SCROLLWIN(MyAutoTimedScrollingWindow::OnScroll) END_EVENT_TABLE() MyAutoTimedScrollingWindow::MyAutoTimedScrollingWindow(wxWindow* parent)