diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-13 12:10:31 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2013-11-14 06:16:12 +0000 |
commit | 39c8da8c86decbe3443a786ad445a18b0078daa3 (patch) | |
tree | 6a94899b413111ddf497885b17bb8df751a0d9f6 /xmloff/source/text/txtvfldi.cxx | |
parent | f50699c816de8e4be3433c6387e37d92aedd41a0 (diff) |
remove unnecessary sal_Unicode casts in XMLOFF module
Change-Id: I836c7a28d5ec9039c0b185e8db2aa6d01ac62566
Reviewed-on: https://gerrit.libreoffice.org/6665
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmloff/source/text/txtvfldi.cxx')
-rw-r--r-- | xmloff/source/text/txtvfldi.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/text/txtvfldi.cxx b/xmloff/source/text/txtvfldi.cxx index e86cb91bf914..553276a19be8 100644 --- a/xmloff/source/text/txtvfldi.cxx +++ b/xmloff/source/text/txtvfldi.cxx @@ -393,7 +393,7 @@ XMLSequenceFieldImportContext::XMLSequenceFieldImportContext( sPropertyNumberFormat(sAPI_number_format), sPropertySequenceValue(sAPI_sequence_value), - sNumFormat(OUString(sal_Unicode('1'))), + sNumFormat(OUString('1')), sNumFormatSync(GetXMLToken(XML_FALSE)), bRefNameOK(sal_False) { |