diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-02 08:35:30 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-06-02 11:13:46 +0200 |
commit | a21d34941c01622a479523d9eb2ab4086ff14ca0 (patch) | |
tree | d4c957c6be5ba1273fd15ddb81a2bf90cad60465 /offapi | |
parent | 7aae883b90850af3f3a0aaada5704682f77c3d02 (diff) |
drop some more RTL_CONSTASCII_USTRINGPARAM
Change-Id: I528b0ecb5282178d8e727471beb126cb7d3f2eb4
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/i18n/XCharacterClassification.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/offapi/com/sun/star/i18n/XCharacterClassification.idl b/offapi/com/sun/star/i18n/XCharacterClassification.idl index 9540f7c44076..1bc8c7c2af22 100644 --- a/offapi/com/sun/star/i18n/XCharacterClassification.idl +++ b/offapi/com/sun/star/i18n/XCharacterClassification.idl @@ -245,7 +245,7 @@ published interface XCharacterClassification : com::sun::star::uno::XInterface // Continuing characters may be any alphanumeric or underscore. sal_Int32 nContFlags = nStartFlags; // Additionally, continuing characters may contain a blank. - OUString aContChars( RTL_CONSTASCII_USTRINGPARAM(" ") ); + OUString aContChars( " " ); // Parse predefined (must be an IDENTNAME) token. ParseResult rRes = xCC->parsePredefinedToken( KParseType::IDENTNAME, rName, 0, aLocale, nStartFlags, aEmptyString, nContFlags, aContChars ); |