summaryrefslogtreecommitdiff
path: root/tools/bootstrp/rscdep.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/bootstrp/rscdep.cxx')
-rw-r--r--tools/bootstrp/rscdep.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/bootstrp/rscdep.cxx b/tools/bootstrp/rscdep.cxx
index caefd7e9ccf4..7bcf036f6fa4 100644
--- a/tools/bootstrp/rscdep.cxx
+++ b/tools/bootstrp/rscdep.cxx
@@ -88,7 +88,7 @@ int main( int argc, char** argv )
char pOutputFileName[255];
char pSrsFileName[255];
String aSrsBaseName;
- BOOL bSource = FALSE;
+ sal_Bool bSource = sal_False;
ByteString aRespArg;
// who needs anything but '/' ?
// String aDelim = String(DirEntry::GetAccessDelimiter());
@@ -172,7 +172,7 @@ int main( int argc, char** argv )
pDep->AddSource( &aBuf2[0] );
aRespArg += " ";
aRespArg += &aBuf2[0];
- bSource = TRUE;
+ bSource = sal_True;
}
}
}
@@ -221,7 +221,7 @@ int main( int argc, char** argv )
aEntry.ToAbs();
// String aCwd = aEntry.GetName();
String aCwd(pFileNamePrefix, gsl_getSystemTextEncoding());
-/* USHORT nPos;
+/* sal_uInt16 nPos;
#ifndef UNX
while ( (nPos = aCwd.Search('\\') != STRING_NOTFOUND ))
#else
@@ -272,7 +272,7 @@ int main( int argc, char** argv )
aString += aRespArg;
pDep->Execute();
ByteStringList *pLst = pDep->GetDepList();
- ULONG nCount = pLst->Count();
+ sal_uIntPtr nCount = pLst->Count();
if ( nCount == 0 )
{
aOutStream.WriteLine( aString );
@@ -283,7 +283,7 @@ int main( int argc, char** argv )
aOutStream.WriteLine( aString );
}
- for ( ULONG j=0; j<nCount; j++ )
+ for ( sal_uIntPtr j=0; j<nCount; j++ )
{
ByteString *pStr = pLst->GetObject(j);
pStr->SearchAndReplaceAll('\\', ByteString( aDelim, RTL_TEXTENCODING_ASCII_US ));