]> git.saurik.com Git - wxWidgets.git/commitdiff
Preserve m_skipped in wx[Var]ScrollHelperEvtHandler::ProcessEvent.
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 28 Mar 2010 14:37:30 +0000 (14:37 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 28 Mar 2010 14:37:30 +0000 (14:37 +0000)
If the event was skipped and not processed, its "skipped" status would
be lost.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63761 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/scrlwing.cpp
src/generic/vscroll.cpp

index e8154d1559d9bab4856560b6a1df55cd75ac62c3..6e0cca186f6688e32be6f89bfa726bc4fec230d3 100644 (file)
@@ -298,8 +298,7 @@ bool wxScrollHelperEvtHandler::ProcessEvent(wxEvent& event)
         }
     }
 
-    if ( processed )
-        event.Skip(wasSkipped);
+    event.Skip(wasSkipped);
 
     return processed;
 }
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;
 }