summaryrefslogtreecommitdiff
path: root/tools/bootstrp
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-06-30 22:54:36 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-01 09:08:45 +0100
commitae25807a8462e71433798283f29b2ff82ba3a9df (patch)
tree658545c11556c84ff7748704df3848ca2cc19368 /tools/bootstrp
parent094092d47489fd040668bbcc6315a1221bbfc42b (diff)
ByteString::CreateFromInt32 -> OString::valueOf
Diffstat (limited to 'tools/bootstrp')
-rw-r--r--tools/bootstrp/mkunroll/mkunroll.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bootstrp/mkunroll/mkunroll.cxx b/tools/bootstrp/mkunroll/mkunroll.cxx
index ff958ba8e717..c1b0252a65ca 100644
--- a/tools/bootstrp/mkunroll/mkunroll.cxx
+++ b/tools/bootstrp/mkunroll/mkunroll.cxx
@@ -212,7 +212,7 @@ void MkFilter::Filter()
{
MkLine *pMkLine = (*pLine->pPrivateTnrLst)[ i ];
ByteString aLine = pMkLine->aLine;
- while( aLine.SearchAndReplace( aTnr, ByteString::CreateFromInt32( n )) != (sal_uInt16)-1 ) ;
+ while( aLine.SearchAndReplace( aTnr, rtl::OString::valueOf(static_cast<sal_Int32>(n)) ) != (sal_uInt16)-1 ) ;
fputs( aLine.GetBuffer(), pOut );
fprintf( stderr, "o" );
}