summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-01-09 18:02:32 +0100
committerLuboš Luňák <l.lunak@suse.cz>2013-01-09 18:02:49 +0100
commitc57906c8f614047a488eea6eb77c535bf90a889e (patch)
tree340353292065a23d85b083ed1cbca8296f7b9882 /svx/source
parent79c293dd53a7cb3aaffceab2ee0ccd7c80a22667 (diff)
OUString::valueOf sal_Int32 cast once more
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/svdraw/svdview.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdview.cxx b/svx/source/svdraw/svdview.cxx
index b78f71c37926..b28c9c1a5339 100644
--- a/svx/source/svdraw/svdview.cxx
+++ b/svx/source/svdraw/svdview.cxx
@@ -1255,7 +1255,7 @@ XubString SdrView::GetStatusText()
#ifdef DBG_UTIL
aStr += UniString( RTL_CONSTASCII_USTRINGPARAM( ", Level " ) );
- aStr += OUString::valueOf( pTextEditOutliner->GetDepth( aSel.nEndPara ) );
+ aStr += OUString::valueOf( sal_Int32( pTextEditOutliner->GetDepth( aSel.nEndPara )) );
#endif
}