summaryrefslogtreecommitdiffstats
path: root/include/tools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-10-19 19:21:49 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-10-20 12:03:50 +0100
commit35373db02976efff7f640b477d07825e96c6b5a4 (patch)
treef0e46664d32ab9b2ba09c8b46a14b2fd6fde67dd /include/tools
parentfix save several file on by reseting the xstorable on close (diff)
downloadcore-35373db02976efff7f640b477d07825e96c6b5a4.tar.gz
core-35373db02976efff7f640b477d07825e96c6b5a4.zip
Related: fdo#38838 remove String::Assign(const sal_Unicode*)
Change-Id: I0dfa34732acfd20e71fa3876466552338332610b
Diffstat (limited to 'include/tools')
-rw-r--r--include/tools/string.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/string.hxx b/include/tools/string.hxx
index d2e5088c9f92..2203a7da2f3d 100644
--- a/include/tools/string.hxx
+++ b/include/tools/string.hxx
@@ -135,6 +135,7 @@ private:
TOOLS_DLLPRIVATE UniString( const sal_Unicode* pCharStr );
TOOLS_DLLPRIVATE UniString( const sal_Unicode* pCharStr, xub_StrLen nLen );
TOOLS_DLLPRIVATE UniString( sal_Unicode c );
+ TOOLS_DLLPRIVATE UniString& Assign( const sal_Unicode* pCharStr );
TOOLS_DLLPRIVATE UniString& Assign( const sal_Unicode* pCharStr, xub_StrLen nLen );
TOOLS_DLLPRIVATE UniString& Append( const sal_Unicode* pCharStr );
TOOLS_DLLPRIVATE UniString& Append( const sal_Unicode* pCharStr, xub_StrLen nLen );
@@ -181,7 +182,6 @@ public:
UniString& Assign( const UniString& rStr );
UniString& Assign( const OUString& rStr );
- UniString& Assign( const sal_Unicode* pCharStr );
UniString& Assign( sal_Unicode c );
inline UniString & Assign(char c) // ...but allow "Assign('a')"
{ return Assign(static_cast< sal_Unicode >(c)); }