diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-03-06 10:44:52 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-03-12 13:35:56 +0100 |
commit | 2f5f802bcf197c5c65aa4453ad2097d5642b80aa (patch) | |
tree | de73d7917814113d7e593f9c42e7a0242465f447 /sal/util | |
parent | f2d0fcc26be481c2f872056fb3b8402169d124d8 (diff) |
rtl_uString_newFromLiteral() for string literals
Drop the recently introduced rtl_uString_newFromAscii_WithLength()
and replace it with this one. The name fits better and it'll be also
a distinct function that specifically includes embedded \0's
(because that's what OUString supports and if a string literal
explicitly includes it, it makes sense to copy it as such).
Diffstat (limited to 'sal/util')
-rw-r--r-- | sal/util/sal.map | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/util/sal.map b/sal/util/sal.map index 920bda9413c7..fb7f00112e19 100644 --- a/sal/util/sal.map +++ b/sal/util/sal.map @@ -305,7 +305,7 @@ UDK_3_0_0 { rtl_uString_newFromStr; rtl_uString_newFromStr_WithLength; rtl_uString_newFromAscii; - rtl_uString_newFromAscii_WithLength; + rtl_uString_newFromLiteral; rtl_uString_newFromString; rtl_uString_newReplace; rtl_uString_newReplaceStrAt; |