diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-17 10:41:59 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-17 10:41:59 +0100 |
commit | 50d31b204fc39765f57737587ed9792c4fc97c00 (patch) | |
tree | 9bbaec77c243e29f37cc37dc67b7926d136af891 /svx | |
parent | 602e942af6e493ce24b5266549a995c5d5a1148d (diff) |
Don't assume sal_Unicode is unsigned short
Change-Id: I5779c639c480d5a2fbefd47942a662ff7ca4a9f5
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/items/rotmodit.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 |