[Libreoffice-commits] core.git: chart2/source dbaccess/source sd/source sfx2/source slideshow/source svx/source vcl/source xmloff/source

David Ostrovsky david at ostrovsky.org
Wed Mar 9 07:54:18 UTC 2016


 chart2/source/inc/CommonConverters.hxx       |    1 +
 chart2/source/tools/DataSourceHelper.cxx     |    2 ++
 dbaccess/source/filter/xml/xmlExport.cxx     |    1 +
 sd/source/ui/sidebar/MasterPageObserver.cxx  |    1 +
 sfx2/source/view/classificationhelper.cxx    |    1 +
 slideshow/source/engine/shapes/drawshape.cxx |    1 +
 svx/source/form/formcontroller.cxx           |    1 +
 vcl/source/gdi/textlayout.cxx                |    1 +
 xmloff/source/chart/SchXMLTableContext.cxx   |    1 +
 xmloff/source/text/txtparae.cxx              |    1 +
 10 files changed, 11 insertions(+)

New commits:
commit adfa77254927dcb3f2a87eb0d23c71ad7282948b
Author: David Ostrovsky <david at ostrovsky.org>
Date:   Wed Mar 9 00:01:36 2016 +0100

    Add missing includes
    
    These include were needed to compile on Windows, MSVC 14.0 with
    clang-cl.
    
    Change-Id: I4ca5cec8314920e90fcca6fa69ec4df87d680f29
    Reviewed-on: https://gerrit.libreoffice.org/23044
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/chart2/source/inc/CommonConverters.hxx b/chart2/source/inc/CommonConverters.hxx
index 46288be..af72ba1 100644
--- a/chart2/source/inc/CommonConverters.hxx
+++ b/chart2/source/inc/CommonConverters.hxx
@@ -38,6 +38,7 @@
 
 #include <vector>
 #include <algorithm>
+#include <iterator>
 
 namespace chart
 {
diff --git a/chart2/source/tools/DataSourceHelper.cxx b/chart2/source/tools/DataSourceHelper.cxx
index 6e37732..3d90fa9 100644
--- a/chart2/source/tools/DataSourceHelper.cxx
+++ b/chart2/source/tools/DataSourceHelper.cxx
@@ -37,6 +37,8 @@
 #include <com/sun/star/chart/ChartDataRowSource.hpp>
 #include <com/sun/star/chart/ErrorBarStyle.hpp>
 
+#include <iterator>
+
 namespace chart
 {
 using namespace ::com::sun::star;
diff --git a/dbaccess/source/filter/xml/xmlExport.cxx b/dbaccess/source/filter/xml/xmlExport.cxx
index 14bf274..2938173 100644
--- a/dbaccess/source/filter/xml/xmlExport.cxx
+++ b/dbaccess/source/filter/xml/xmlExport.cxx
@@ -54,6 +54,7 @@
 
 #include <boost/optional.hpp>
 #include <memory>
+#include <iterator>
 
 namespace dbaxml
 {
diff --git a/sd/source/ui/sidebar/MasterPageObserver.cxx b/sd/source/ui/sidebar/MasterPageObserver.cxx
index 78b6dbc..cc32177 100644
--- a/sd/source/ui/sidebar/MasterPageObserver.cxx
+++ b/sd/source/ui/sidebar/MasterPageObserver.cxx
@@ -20,6 +20,7 @@
 #include "MasterPageObserver.hxx"
 
 #include <algorithm>
+#include <iterator>
 #include "drawdoc.hxx"
 #include "sdpage.hxx"
 #include <set>
diff --git a/sfx2/source/view/classificationhelper.cxx b/sfx2/source/view/classificationhelper.cxx
index c3161b6..ab913b5 100644
--- a/sfx2/source/view/classificationhelper.cxx
+++ b/sfx2/source/view/classificationhelper.cxx
@@ -11,6 +11,7 @@
 
 #include <map>
 #include <algorithm>
+#include <iterator>
 
 #include <com/sun/star/beans/XPropertyContainer.hpp>
 #include <com/sun/star/document/XDocumentProperties.hpp>
diff --git a/slideshow/source/engine/shapes/drawshape.cxx b/slideshow/source/engine/shapes/drawshape.cxx
index 1d58d8d..667a176 100644
--- a/slideshow/source/engine/shapes/drawshape.cxx
+++ b/slideshow/source/engine/shapes/drawshape.cxx
@@ -49,6 +49,7 @@
 #include <boost/mem_fn.hpp>
 #include <cmath>
 #include <algorithm>
+#include <iterator>
 #include <functional>
 #include <limits>
 
diff --git a/svx/source/form/formcontroller.cxx b/svx/source/form/formcontroller.cxx
index 238c265..d0c93d3 100644
--- a/svx/source/form/formcontroller.cxx
+++ b/svx/source/form/formcontroller.cxx
@@ -88,6 +88,7 @@
 #include <osl/mutex.hxx>
 
 #include <algorithm>
+#include <iterator>
 
 #include <o3tl/functional.hxx>
 
diff --git a/vcl/source/gdi/textlayout.cxx b/vcl/source/gdi/textlayout.cxx
index 0b7ac69..1e01659 100644
--- a/vcl/source/gdi/textlayout.cxx
+++ b/vcl/source/gdi/textlayout.cxx
@@ -33,6 +33,7 @@
 #endif
 
 #include <memory>
+#include <iterator>
 
 namespace vcl
 {
diff --git a/xmloff/source/chart/SchXMLTableContext.cxx b/xmloff/source/chart/SchXMLTableContext.cxx
index d70b8f6..5bef107 100644
--- a/xmloff/source/chart/SchXMLTableContext.cxx
+++ b/xmloff/source/chart/SchXMLTableContext.cxx
@@ -49,6 +49,7 @@
 
 #include <vector>
 #include <algorithm>
+#include <iterator>
 
 using namespace com::sun::star;
 using namespace ::xmloff::token;
diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx
index b2c4320..3cadc6a 100644
--- a/xmloff/source/text/txtparae.cxx
+++ b/xmloff/source/text/txtparae.cxx
@@ -109,6 +109,7 @@
 #include <unordered_map>
 #include <vector>
 #include <algorithm>
+#include <iterator>
 
 using namespace ::std;
 using namespace ::com::sun::star;


More information about the Libreoffice-commits mailing list