summaryrefslogtreecommitdiffstats
path: root/tools/bootstrp/rscdep.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/bootstrp/rscdep.cxx')
-rw-r--r--tools/bootstrp/rscdep.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/bootstrp/rscdep.cxx b/tools/bootstrp/rscdep.cxx
index 1ebd9e85ac9a..d1e26f21d27a 100644
--- a/tools/bootstrp/rscdep.cxx
+++ b/tools/bootstrp/rscdep.cxx
@@ -125,13 +125,13 @@ int main( int argc, char** argv )
}
if (aBuf[0] == '@' )
{
- ByteString aToken;
+ rtl::OString aToken;
String aRespName( &aBuf[1], gsl_getSystemTextEncoding());
SimpleConfig aConfig( aRespName );
- while ( (aToken = aConfig.GetNext()) != "")
+ while ((aToken = aConfig.getNext()).getLength())
{
char aBuf2[255];
- (void) strcpy( aBuf2, aToken.GetBuffer());
+ strcpy( aBuf2, aToken.getStr());
if ( aBuf[0] == '-' && aBuf[1] == 'p' && aBuf[2] == '=' )
{
strcpy(pFileNamePrefix, &aBuf[3]);