diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 13:33:21 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 14:12:33 +0100 |
commit | afdd564e5f1f5c9772a9f2b278113605c40f9da8 (patch) | |
tree | 14624fa95f26980d05b823b51f75129a7570ed27 /svgio | |
parent | 63968bae8713a4938a97664ba7655a898730c072 (diff) |
svgio: Use appropriate OUString functions on string constants
Change-Id: Ic47d4a855b948f399f67d051fa8dbe874b939676
Diffstat (limited to 'svgio')
-rw-r--r-- | svgio/source/svgreader/svgdocumenthandler.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/svgio/source/svgreader/svgdocumenthandler.cxx b/svgio/source/svgreader/svgdocumenthandler.cxx index d816f5473263..062face81487 100644 --- a/svgio/source/svgreader/svgdocumenthandler.cxx +++ b/svgio/source/svgreader/svgdocumenthandler.cxx @@ -394,10 +394,7 @@ namespace svgio { /// invalid token, ignore #ifdef DBG_UTIL - myAssert( - OUString("Unknown Base SvgToken <") + - aName + - OUString("> (!)") ); + myAssert( "Unknown Base SvgToken <" + aName + "> (!)" ); #endif break; } |