diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-21 14:32:36 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-21 19:29:17 +0100 |
commit | cfda947d7c0476b9c402c84f9d8515c76ec87bac (patch) | |
tree | fd66daae76b321a05a3b81c3318a5b6546969efb /include/tools | |
parent | ffd0e2911023e684ca1e206d18b45ef5aa6179f9 (diff) |
Related: fdo#38838 remove UniString::Copy
Change-Id: I566e3ade54962bbc6ace9b757f79c1b8ed9ffd00
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 95602203531f..3933595b6e2f 100644 --- a/include/tools/string.hxx +++ b/include/tools/string.hxx @@ -103,7 +103,6 @@ public: UniString(); UniString( const ResId& rResId ); UniString( const UniString& rStr ); - UniString( const UniString& rStr, xub_StrLen nPos, xub_StrLen nLen ); UniString( const OUString& rStr ); ~UniString(); @@ -133,9 +132,6 @@ public: xub_StrLen Len() const { return (xub_StrLen)mpData->mnLen; } - UniString Copy( xub_StrLen nIndex = 0, xub_StrLen nCount = STRING_LEN ) const - { return UniString( *this, nIndex, nCount ); } - const sal_Unicode* GetBuffer() const { return mpData->maStr; } friend sal_Bool operator == ( const UniString& rStr1, const UniString& rStr2 ); |