diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx index 3509c6225f3d..810aa2b6c13c 100644 --- a/include/vcl/svapp.hxx +++ b/include/vcl/svapp.hxx @@ -20,8 +20,6 @@ #ifndef INCLUDED_VCL_SVAPP_HXX #define INCLUDED_VCL_SVAPP_HXX -#include - #include #include @@ -851,9 +849,11 @@ public: */ static ImplSVEvent * PostMouseEvent( sal_uLong nEvent, Window *pWin, MouseEvent* pMouseEvent ); -#if !HAVE_FEATURE_DESKTOP /** Send zoom event + Experimental work in progress. Available only for iOS and Android, and unclear whether actually + is needed now with tiled rendering. + @param nEvent Event ID for zoom event @param pWin Pointer to window to which the event is sent @param pZoomEvent Zoom event to send @@ -862,12 +862,14 @@ public: /* Send scroll event + Experimental work in progress. Available only for iOS and Android, and unclear whether actually + is needed now with tiled rendering. + @param nEvent Event ID for scroll event @param pWin Pointer to window to which the event is sent @param pScrollEvent Scroll event to send */ static ImplSVEvent * PostScrollEvent( sal_uLong nEvent, Window *pWin, ScrollEvent* pScrollEvent ); -#endif /** Remove mouse and keypress events from a window... any also zoom and scroll events if the platform supports it. diff --git a/test/source/bootstrapfixture.cxx b/test/source/bootstrapfixture.cxx index b7c49ba8aa11..e8dcfa80c32e 100644 --- a/test/source/bootstrapfixture.cxx +++ b/test/source/bootstrapfixture.cxx @@ -6,6 +6,9 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include + #include #include #include diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx index 78552605b7eb..b27b9c31174e 100644 --- a/vcl/source/app/svapp.cxx +++ b/vcl/source/app/svapp.cxx @@ -17,6 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include #include #include "comphelper/processfactory.hxx"