From 50d31b204fc39765f57737587ed9792c4fc97c00 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 17 Nov 2015 10:41:59 +0100 Subject: Don't assume sal_Unicode is unsigned short Change-Id: I5779c639c480d5a2fbefd47942a662ff7ca4a9f5 --- svx/source/items/rotmodit.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svx/source/items/rotmodit.cxx b/svx/source/items/rotmodit.cxx index b5d622eb1aa7..c3fa82b4bd50 100644 --- a/svx/source/items/rotmodit.cxx +++ b/svx/source/items/rotmodit.cxx @@ -78,7 +78,7 @@ bool SvxRotateModeItem::GetPresentation( // break; // FALL THROUGH!!! case SFX_ITEM_PRESENTATION_NAMELESS: - rText += OUString( GetValue() ); + rText += OUString( sal_Unicode(GetValue()) ); return true; break; default: ;//prevent warning -- cgit