summaryrefslogtreecommitdiffstats
path: root/include/tools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-10-21 14:32:36 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-10-21 19:29:17 +0100
commitcfda947d7c0476b9c402c84f9d8515c76ec87bac (patch)
treefd66daae76b321a05a3b81c3318a5b6546969efb /include/tools
parentfdo#70465: speed up AccessibleEventNotifier::generateId() (diff)
downloadcore-cfda947d7c0476b9c402c84f9d8515c76ec87bac.tar.gz
core-cfda947d7c0476b9c402c84f9d8515c76ec87bac.zip
Related: fdo#38838 remove UniString::Copy
Change-Id: I566e3ade54962bbc6ace9b757f79c1b8ed9ffd00
Diffstat (limited to 'include/tools')
-rw-r--r--include/tools/string.hxx4
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 );