Kaydet (Commit) bb7f52e9 authored tarafından Ivan Timofeev's avatar Ivan Timofeev

fdo#51543: fix incomplete slide number info in status bar

Change-Id: I73cdd236a9e167fb812b0e2c0922df5bd3e2537b
üst c064aad6
...@@ -748,9 +748,9 @@ void DrawViewShell::GetStatusBarState(SfxItemSet& rSet) ...@@ -748,9 +748,9 @@ void DrawViewShell::GetStatusBarState(SfxItemSet& rSet)
// Allways show the slide/page number. // Allways show the slide/page number.
OUString aOUString = SD_RESSTR(STR_SD_PAGE); OUString aOUString = SD_RESSTR(STR_SD_PAGE);
aOUString += " "; aOUString += " ";
aOUString += OUString::valueOf( maTabControl.GetCurPageId() ); aOUString += OUString::valueOf( sal_Int32(maTabControl.GetCurPageId()) );
aOUString += " / " ; aOUString += " / " ;
aOUString += OUString::valueOf( GetDoc()->GetSdPageCount( mePageKind ) ); aOUString += OUString::valueOf( sal_Int32(GetDoc()->GetSdPageCount(mePageKind)) );
// If in layer mode additionally show the layer that contains all // If in layer mode additionally show the layer that contains all
// selected shapes of the page. If the shapes are distributed on // selected shapes of the page. If the shapes are distributed on
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment