diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-19 14:25:58 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-19 19:16:30 +0100 |
commit | a6cdf1b2f638800318e0b8789bd991e04eef5cf5 (patch) | |
tree | 4c3b394ed3d9af98f86bf11c4b6787d5911b817e /include/tools | |
parent | 75e6bcba872bc1fd7b4316ff219fb6545e9f542d (diff) |
Related: fdo#38838 remove String::Search
Change-Id: I92a50bc5f7b0cddcf2066cdac50439a3d5f1708b
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/string.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/tools/string.hxx b/include/tools/string.hxx index 6c738827c494..d2e5088c9f92 100644 --- a/include/tools/string.hxx +++ b/include/tools/string.hxx @@ -141,7 +141,6 @@ private: TOOLS_DLLPRIVATE UniString& Expand( xub_StrLen nCount, sal_Unicode cExpandChar ); TOOLS_DLLPRIVATE sal_Bool Equals( const sal_Unicode* pCharStr, xub_StrLen nIndex, xub_StrLen nLen ) const; - TOOLS_DLLPRIVATE xub_StrLen Search( const sal_Unicode* pCharStr, xub_StrLen nIndex = 0 ) const; TOOLS_DLLPRIVATE UniString& operator +=( const sal_Unicode* pCharStr ); @@ -227,9 +226,6 @@ public: sal_Bool Equals( const UniString& rStr, xub_StrLen nIndex, xub_StrLen nLen ) const; - xub_StrLen Search( sal_Unicode c, xub_StrLen nIndex = 0 ) const; - xub_StrLen Search( const UniString& rStr, xub_StrLen nIndex = 0 ) const; - const sal_Unicode* GetBuffer() const { return mpData->maStr; } friend sal_Bool operator == ( const UniString& rStr1, const UniString& rStr2 ) |