]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/vscroll.cpp
Fix wchar_t with int comparisons for Apple gcc.
[wxWidgets.git] / src / generic / vscroll.cpp
index 809ae48576edf1e2676329b89c77e6223d2b2fd3..96fcd3f54d9f53a59570134ab5322809c778c4eb 100644 (file)
@@ -97,10 +97,6 @@ bool wxVarScrollHelperEvtHandler::ProcessEvent(wxEvent& event)
     if ( wasSkipped )
         event.Skip(false);
 
-    // reset the skipped flag to false as it might have been set to true in
-    // ProcessEvent() above
-    event.Skip(false);
-
     if ( evType == wxEVT_SCROLLWIN_TOP ||
          evType == wxEVT_SCROLLWIN_BOTTOM ||
          evType == wxEVT_SCROLLWIN_LINEUP ||
@@ -127,8 +123,7 @@ bool wxVarScrollHelperEvtHandler::ProcessEvent(wxEvent& event)
     }
 #endif // wxUSE_MOUSEWHEEL
 
-    if ( processed )
-        event.Skip(wasSkipped);
+    event.Skip(wasSkipped);
 
     return processed;
 }