diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-24 10:58:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-24 11:00:48 +0000 |
commit | 0b67b1229a92adf68b614fe53f84bb19780553bf (patch) | |
tree | 3a6e75e41f569b9ad21413b19fb6e34c11908ba9 /sc | |
parent | 9c2884ae4bf6db13334a1d8301721c27f0b889f7 (diff) |
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 <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/tiledrendering/tiledrendering.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 |