X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6a423d654458a8a7ee1a4d3ce50eb6f2e352098d..24aab8e81a8627802e4111d9c99a50ece8d0026e:/src/generic/splitter.cpp diff --git a/src/generic/splitter.cpp b/src/generic/splitter.cpp index 5ba2ae92b8..9e357621d6 100644 --- a/src/generic/splitter.cpp +++ b/src/generic/splitter.cpp @@ -69,7 +69,7 @@ BEGIN_EVENT_TABLE(wxSplitterWindow, wxWindow) WX_EVENT_TABLE_CONTROL_CONTAINER(wxSplitterWindow) END_EVENT_TABLE() -WX_DELEGATE_TO_CONTROL_CONTAINER(wxSplitterWindow) +WX_DELEGATE_TO_CONTROL_CONTAINER(wxSplitterWindow, wxWindow) bool wxSplitterWindow::Create(wxWindow *parent, wxWindowID id, const wxPoint& pos, @@ -213,10 +213,10 @@ void wxSplitterWindow::OnMouseEvent(wxMouseEvent& event) // following the mouse movement while it drags the sash, without it we only // draw the sash at the new position but only resize the windows when the // dragging is finished -#if defined( __WXMAC__ ) && TARGET_API_MAC_OSX == 1 - bool isLive = true ; +#if defined( __WXMAC__ ) && defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX == 1 + bool isLive = true ; // FIXME: why? #else - bool isLive = (GetWindowStyleFlag() & wxSP_LIVE_UPDATE) != 0; + bool isLive = HasFlag(wxSP_LIVE_UPDATE); #endif if (event.LeftDown()) {