summaryrefslogtreecommitdiff
path: root/include/tools/string.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-10-20 12:06:08 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-10-20 19:00:36 +0100
commitb0fd64b2fa7ae1fd8d435c64b7b69758e98e8926 (patch)
tree70ce590c008d65257b2a7ce3a0b745378767eef2 /include/tools/string.hxx
parent2d41f3acc359643a88bd39ef8c8d7bac106765fa (diff)
Related: fdo#38838 remove the unused String::Insert
Change-Id: I39f4c68b76d8816fc91e4dc39bf2305142d1fb93
Diffstat (limited to 'include/tools/string.hxx')
-rw-r--r--include/tools/string.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tools/string.hxx b/include/tools/string.hxx
index 542e643a021c..13c3ce0a1184 100644
--- a/include/tools/string.hxx
+++ b/include/tools/string.hxx
@@ -142,6 +142,8 @@ 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 UniString& Insert( const UniString& rStr, xub_StrLen nPos, xub_StrLen nLen,
+ xub_StrLen nIndex = STRING_LEN );
TOOLS_DLLPRIVATE UniString& operator +=( const sal_Unicode* pCharStr );
@@ -215,8 +217,6 @@ public:
xub_StrLen Len() const { return (xub_StrLen)mpData->mnLen; }
UniString& Insert( const UniString& rStr, xub_StrLen nIndex = STRING_LEN );
- UniString& Insert( const UniString& rStr, xub_StrLen nPos, xub_StrLen nLen,
- xub_StrLen nIndex = STRING_LEN );
UniString& Insert( sal_Unicode c, xub_StrLen nIndex = STRING_LEN );
UniString Copy( xub_StrLen nIndex = 0, xub_StrLen nCount = STRING_LEN ) const;