From 3a2275805102e8a428e5d309cb447adaf8ce2c73 Mon Sep 17 00:00:00 2001 From: DeepSOIC Date: Wed, 15 May 2019 00:56:37 +0300 Subject: [PATCH] Fix build with boost 1.65.1 on ubuntu 18.04 reported to me privately by @fjullien --- src/Gui/GestureNavigationStyle.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Gui/GestureNavigationStyle.cpp b/src/Gui/GestureNavigationStyle.cpp index 2321db9e4f..cbd7f60f6b 100644 --- a/src/Gui/GestureNavigationStyle.cpp +++ b/src/Gui/GestureNavigationStyle.cpp @@ -272,7 +272,7 @@ public: } } break; //end of animation modes case BOXZOOM: - return sc::result::no_reaction; + return forward_event(); } //testing for draggers @@ -337,7 +337,7 @@ public: } } - return sc::result::no_reaction; + return forward_event(); } }; @@ -476,7 +476,7 @@ public: ev.flags->processed = true; return transit(); } - return sc::result::no_reaction; + return forward_event(); } }; @@ -515,7 +515,7 @@ public: ns.normalizePixelPos(pos), ns.normalizePixelPos(this->base_pos)); this->base_pos = pos; } - return sc::result::no_reaction; + return forward_event(); } }; @@ -560,7 +560,7 @@ public: ns.normalizePixelPos(this->base_pos)); this->base_pos = pos; } - return sc::result::no_reaction; + return forward_event(); } }; @@ -605,7 +605,7 @@ public: ns.normalizePixelPos(this->base_pos)); this->base_pos = pos; } - return sc::result::no_reaction; + return forward_event(); } }; @@ -650,7 +650,7 @@ public: SbVec2f(0.5,0.5)); this->base_pos = pos; } - return sc::result::no_reaction; + return forward_event(); } }; @@ -735,7 +735,7 @@ public: ev.flags->processed = false; } } - return sc::result::no_reaction; + return forward_event(); } }; @@ -782,7 +782,7 @@ public: //another gesture can start... return transit(); } - return sc::result::no_reaction; + return forward_event(); } }; @@ -806,7 +806,7 @@ public: return transit(); } } - return sc::result::no_reaction; + return forward_event(); } };