summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2022-08-09 11:30:32 +0200
committerStephan Bergmann <sbergman@redhat.com>2022-08-10 13:40:09 +0200
commitca550863f7d2e650116582dee298388ea3a97725 (patch)
tree40b6f15a1f1463eb342355a3f344d92deb3cf17a /slideshow
parent59341a78e42106fe8c4d1ba8298bd040e2fad9c7 (diff)
Better cast to sal_[u]IntPtr when passing pointer to O[U]String::number
Change-Id: I5b7a0fa060c1e0ae4aa194e0c1862f303dd8a2d7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138062 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/animationnodes/nodetools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow/source/engine/animationnodes/nodetools.cxx b/slideshow/source/engine/animationnodes/nodetools.cxx
index f509e680c04b..c6b5c86f737f 100644
--- a/slideshow/source/engine/animationnodes/nodetools.cxx
+++ b/slideshow/source/engine/animationnodes/nodetools.cxx
@@ -34,7 +34,7 @@ namespace slideshow::internal
{
return OUString::number(lcl_nOffset) +
" - 0x" +
- OUString::number(reinterpret_cast<sal_Int64>(pNode), 16);
+ OUString::number(reinterpret_cast<sal_IntPtr>(pNode), 16);
}
void debugNodesShowTree( const BaseNode* pNode )