summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-02-23 20:43:33 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-02-23 20:45:03 +0000
commit0a45b102953a86ea3f26ffd5740f791b3f752f08 (patch)
tree0efdfccfe4fbbca4492bca0776cfe0de0ae1ea27 /tools
parentcfcfd8848e2354dd942eb54e1da13b7b5027cb6c (diff)
don't point inline at non-existing method
Diffstat (limited to 'tools')
-rw-r--r--tools/inc/tools/string.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/inc/tools/string.hxx b/tools/inc/tools/string.hxx
index 7fe2c1094eef..ecd48c6b93c8 100644
--- a/tools/inc/tools/string.hxx
+++ b/tools/inc/tools/string.hxx
@@ -157,6 +157,7 @@ private:
// Assign(sal_Char)
ByteString& Assign( const sal_Char* pCharStr, xub_StrLen nLen ); //not implemented, to detect use of removed methods without compiler making something to fit
ByteString& Assign( const sal_Char* pCharStr ); //not implemented, to detect use of removed methods without compiler making something to fit
+ ByteString& operator =( const sal_Char* ); //not implemented, to detect use of removed methods without compiler making something to fit
ByteString& operator =(const sal_Char); //not implemented, to detect use of removed methods without compiler making something to fit
ByteString& Assign(sal_Char); //not implemented, to detect use of removed methods without compiler making something to fit
@@ -192,8 +193,6 @@ public:
{ return Assign( rStr ); }
ByteString& operator =( const rtl::OString& rStr )
{ return Assign( rStr ); }
- ByteString& operator =( const sal_Char* pCharStr )
- { return Assign( pCharStr ); }
ByteString& Append( const ByteString& rStr );
ByteString& Append( const sal_Char* pCharStr );