From 3f5a4243c9710d12291df96f4b8133e7a808a590 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Sun, 3 Nov 2002 21:37:05 +0000 Subject: [PATCH] Correct cursor thing in wxSplitterWindow (which manifested itself only in GTK 2.0) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17690 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/splitter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generic/splitter.cpp b/src/generic/splitter.cpp index 9a064f7b58..c5d099a54c 100644 --- a/src/generic/splitter.cpp +++ b/src/generic/splitter.cpp @@ -169,7 +169,7 @@ void wxSplitterWindow::OnMouseEvent(wxMouseEvent& event) y = (int)event.GetY(); // reset the cursor -#if defined( __WXMOTIF__ ) || defined( __WXMAC__ ) +#if defined( __WXMOTIF__ ) || defined( __WXGTK__ ) || defined( __WXMAC__ ) SetCursor(* wxSTANDARD_CURSOR); #elif defined(__WXMSW__) SetCursor(wxCursor());