sc/qa/unit/tiledrendering/tiledrendering.cxx   |    2 +-
 sd/qa/unit/tiledrendering/tiledrendering.cxx   |    2 +-
 sw/qa/extras/tiledrendering/tiledrendering.cxx |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 0b67b1229a92adf68b614fe53f84bb19780553bf
Author: Noel Grandin <noel.gran...@collabora.co.uk>
Date:   Fri Mar 24 10:58:19 2017 +0200

    fix tb71 build
    
    after commit 7916487cf4d9603cdbe4c7ffbe9bb3f28b51ce4e
    "convert ViewShellId to o3tl::strong_int"
    
    Change-Id: Ie7b8ac51a94c3b9e6d39e397aa3dd5cb42acc6d0
    Reviewed-on: https://gerrit.libreoffice.org/35623
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/sc/qa/unit/tiledrendering/tiledrendering.cxx 
b/sc/qa/unit/tiledrendering/tiledrendering.cxx
index 3de85d2bc6fc..6186ab9964ce 100644
--- a/sc/qa/unit/tiledrendering/tiledrendering.cxx
+++ b/sc/qa/unit/tiledrendering/tiledrendering.cxx
@@ -42,7 +42,7 @@ using namespace css;
 
 std::ostream& operator<<(std::ostream& os, ViewShellId const & id)
 {
-    os << (int)id; return os;
+    os << (sal_Int32)id; return os;
 }
 
 namespace
diff --git a/sd/qa/unit/tiledrendering/tiledrendering.cxx 
b/sd/qa/unit/tiledrendering/tiledrendering.cxx
index 4e99d3498006..ca40ef641a99 100644
--- a/sd/qa/unit/tiledrendering/tiledrendering.cxx
+++ b/sd/qa/unit/tiledrendering/tiledrendering.cxx
@@ -54,7 +54,7 @@ static const char* const DATA_DIRECTORY = 
"/sd/qa/unit/tiledrendering/data/";
 
 static std::ostream& operator<<(std::ostream& os, ViewShellId id)
 {
-    os << (int)id; return os;
+    os << (sal_Int32)id; return os;
 }
 
 class SdTiledRenderingTest : public SdModelTestBase, public XmlTestTools
diff --git a/sw/qa/extras/tiledrendering/tiledrendering.cxx 
b/sw/qa/extras/tiledrendering/tiledrendering.cxx
index f1da81e6b193..195cde9c31fc 100644
--- a/sw/qa/extras/tiledrendering/tiledrendering.cxx
+++ b/sw/qa/extras/tiledrendering/tiledrendering.cxx
@@ -38,7 +38,7 @@ static const char* const DATA_DIRECTORY = 
"/sw/qa/extras/tiledrendering/data/";
 
 static std::ostream& operator<<(std::ostream& os, ViewShellId id)
 {
-    os << (int)id; return os;
+    os << (sal_Int32)id; return os;
 }
 
 /// Testsuite for the SwXTextDocument methods implementing the 
vcl::ITiledRenderable interface.
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to