summaryrefslogtreecommitdiff
path: root/cosv
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-06-20 14:15:54 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-06-20 14:15:54 +0100
commit7feb9bcec25ae9971afccf94f49755e43e23b376 (patch)
treea92e6a2f008359b883bc90ff3a6bd535e7787719 /cosv
parentfb21365cef57fe354d6d87137e43945aef2c7833 (diff)
remove the unused replace_all variant
Diffstat (limited to 'cosv')
-rw-r--r--cosv/inc/cosv/streamstr.hxx3
-rw-r--r--cosv/source/strings/streamstr.cxx22
2 files changed, 0 insertions, 25 deletions
diff --git a/cosv/inc/cosv/streamstr.hxx b/cosv/inc/cosv/streamstr.hxx
index ed97fafa7f12..30ad929736a6 100644
--- a/cosv/inc/cosv/streamstr.hxx
+++ b/cosv/inc/cosv/streamstr.hxx
@@ -235,9 +235,6 @@ class StreamStr : public bostream
void replace_all(
char i_cCarToSearch,
char i_cReplacement );
- void replace_all(
- Area i_aStrToSearch,
- Area i_aReplacement );
StreamStr & to_upper(
position_type i_nStart = 0,
diff --git a/cosv/source/strings/streamstr.cxx b/cosv/source/strings/streamstr.cxx
index 415e3f4237c8..b22e05896740 100644
--- a/cosv/source/strings/streamstr.cxx
+++ b/cosv/source/strings/streamstr.cxx
@@ -668,28 +668,6 @@ StreamStr::replace_all( char i_cCarToSearch,
}
}
-void
-StreamStr::replace_all( Area i_aStrToSearch,
- Area i_aReplacement )
-{
- position_type p = 0;
- const char * pSearch = i_aStrToSearch.sStr;
- size_type nSearch = i_aStrToSearch.nLength;
-
- while ( p <= length() - nSearch )
- {
- if ( strncmp(dpData+p, pSearch, nSearch) == 0 )
- {
- replace( p, nSearch, i_aReplacement );
- p += i_aReplacement.nLength;
- }
- else
- {
- ++p;
- }
- } // end while
-}
-
StreamStr &
StreamStr::to_upper( position_type i_nStart,
size_type i_nLength )