From f8d5bd07053d27d4c6546141e61d8da25e44cc24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Sun, 20 Oct 2013 14:54:15 +0100 Subject: [PATCH] Related: fdo#38838 remove operator=(const sal_Unicode*) Change-Id: Id14482d3088a81b012acf5183a595e7d41e860fc --- include/tools/string.hxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/tools/string.hxx b/include/tools/string.hxx index 2203a7da2f3d..542e643a021c 100644 --- a/include/tools/string.hxx +++ b/include/tools/string.hxx @@ -190,8 +190,6 @@ public: { return Assign( rStr ); } UniString& operator =( const OUString& rStr ) { return Assign( rStr ); } - UniString& operator =( const sal_Unicode* pCharStr ) - { return Assign( pCharStr ); } UniString& operator =( sal_Unicode c ) { return Assign( c ); } inline UniString & operator =(char c) // ...but allow "= 'a'"