]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed wrong condition.
authorWłodzimierz Skiba <abx@abx.art.pl>
Thu, 5 Aug 2004 13:36:42 +0000 (13:36 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Thu, 5 Aug 2004 13:36:42 +0000 (13:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28636 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/splitter.cpp

index 03422af4029837f0fd61314fbe64eedde0b98621..bbdaad1e6a50fe7ae3c43092f3be49db35cd315d 100644 (file)
@@ -200,7 +200,7 @@ 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
-#ifdef __WXMAC__ && TARGET_API_MAC_OSX == 1
+#if defined( __WXMAC__ ) && TARGET_API_MAC_OSX == 1
     bool isLive = true ;
 #else
     bool isLive = (GetWindowStyleFlag() & wxSP_LIVE_UPDATE) != 0;