diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-26 22:43:40 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-28 08:44:48 +0100 |
commit | 017aa343a4eb47a7cf7cd129e223a13a94801b07 (patch) | |
tree | e40d44c8105d0fe85b0193624f1e2261b0af7ae2 /sdext/source | |
parent | 6760dc5f168317b3954b852859b2a9548b18a37e (diff) |
Missing include
Change-Id: I1516acb038f08479cdd4ffd42d5af1e7ec555d10
Diffstat (limited to 'sdext/source')
-rw-r--r-- | sdext/source/presenter/PresenterScrollBar.cxx | 1 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterTextView.cxx | 1 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterUIPainter.cxx | 4 |
3 files changed, 6 insertions, 0 deletions
diff --git a/sdext/source/presenter/PresenterScrollBar.cxx b/sdext/source/presenter/PresenterScrollBar.cxx index 8b63eda4edce..774b674ba5d7 100644 --- a/sdext/source/presenter/PresenterScrollBar.cxx +++ b/sdext/source/presenter/PresenterScrollBar.cxx @@ -32,6 +32,7 @@ #include <com/sun/star/rendering/TexturingMode.hpp> #include <com/sun/star/rendering/XPolyPolygon2D.hpp> #include <boost/bind.hpp> +#include <algorithm> #include <memory> #include <math.h> diff --git a/sdext/source/presenter/PresenterTextView.cxx b/sdext/source/presenter/PresenterTextView.cxx index 3498906727cb..8425180fadd9 100644 --- a/sdext/source/presenter/PresenterTextView.cxx +++ b/sdext/source/presenter/PresenterTextView.cxx @@ -22,6 +22,7 @@ #include "PresenterGeometryHelper.hxx" #include "PresenterTimer.hxx" +#include <algorithm> #include <cmath> #include <com/sun/star/accessibility/AccessibleTextType.hpp> diff --git a/sdext/source/presenter/PresenterUIPainter.cxx b/sdext/source/presenter/PresenterUIPainter.cxx index e248a6dd755e..0041ef3a976b 100644 --- a/sdext/source/presenter/PresenterUIPainter.cxx +++ b/sdext/source/presenter/PresenterUIPainter.cxx @@ -17,6 +17,10 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> + +#include <algorithm> + #include "PresenterUIPainter.hxx" #include "PresenterCanvasHelper.hxx" |