diff options
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/slidesorter/controller/SlsSlotManager.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx b/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx index dcdad2b5d7b0..9d37e453e1d2 100644 --- a/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx +++ b/sd/source/ui/slidesorter/controller/SlsSlotManager.cxx @@ -847,7 +847,7 @@ void SlotManager::GetStatusBarState (SfxItemSet& rSet) pFirstPage = pPage; aPageStr += " "; - aPageStr += rtl::OUString::valueOf( nFirstPage + 1 ); + aPageStr += rtl::OUString::valueOf( static_cast<sal_Int32>(nFirstPage + 1) ); aPageStr += " / " ; aPageStr += rtl::OUString::valueOf(mrSlideSorter.GetModel().GetPageCount()); |