From 7feb9bcec25ae9971afccf94f49755e43e23b376 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 20 Jun 2011 14:15:54 +0100 Subject: remove the unused replace_all variant --- cosv/inc/cosv/streamstr.hxx | 3 --- cosv/source/strings/streamstr.cxx | 22 ---------------------- 2 files changed, 25 deletions(-) (limited to 'cosv') 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 ) -- cgit v1.2.3