summaryrefslogtreecommitdiffstats
path: root/sd/source/ui/animations/SlideTransitionPane.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/animations/SlideTransitionPane.cxx')
-rw-r--r--sd/source/ui/animations/SlideTransitionPane.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sd/source/ui/animations/SlideTransitionPane.cxx b/sd/source/ui/animations/SlideTransitionPane.cxx
index a389e08763f1..12fbca7ae85f 100644
--- a/sd/source/ui/animations/SlideTransitionPane.cxx
+++ b/sd/source/ui/animations/SlideTransitionPane.cxx
@@ -46,6 +46,7 @@
#include <undoanim.hxx>
#include <optsitem.hxx>
+#include <o3tl/safeint.hxx>
#include <sfx2/sidebar/Theme.hxx>
#include <algorithm>
@@ -303,7 +304,7 @@ OUString lcl_getSoundFileURL(
DBG_ASSERT( static_cast<sal_uInt32>(rListBox.get_count() - 3) == rSoundList.size(),
"Sound list-box is not synchronized to sound list" );
nPos -= 3;
- if( rSoundList.size() > static_cast<size_t>(nPos) )
+ if( rSoundList.size() > o3tl::make_unsigned(nPos) )
return rSoundList[ nPos ];
}