Kaydet (Commit) 6220ed4e authored tarafından Caolán McNamara's avatar Caolán McNamara

callcatcher: update list

üst 9656a154
......@@ -982,8 +982,6 @@ oox::xls::CellBlock::CellBlock(oox::xls::WorksheetHelper const&, oox::ValueRange
oox::xls::CellBlock::isBefore(oox::ValueRange const&) const
oox::xls::CellBlock::isExpandable(oox::ValueRange const&) const
oox::xls::CellBlock::startNextRow()
pdfi::createOdfEmitter(com::sun::star::uno::Reference<com::sun::star::io::XOutputStream> const&)
psp::GetCommandLineTokenCount(rtl::OString const&)
psp::PrinterGfx::DrawBitmap(Rectangle const&, Rectangle const&, psp::PrinterBmp const&, psp::PrinterBmp const&)
psp::PrinterGfx::DrawMask(Rectangle const&, Rectangle const&, psp::PrinterBmp const&, psp::PrinterColor&)
psp::PrinterGfx::GetGlyphBoundRect(unsigned short, Rectangle&)
......
......@@ -44,7 +44,6 @@ namespace psp
// contents
VCL_DLLPUBLIC int GetCommandLineTokenCount(const rtl::OUString&);
VCL_DLLPUBLIC int GetCommandLineTokenCount(const rtl::OString&);
// returns number of tokens (zero if empty or whitespace only)
VCL_DLLPUBLIC String WhitespaceToSpace( const String&, sal_Bool bProtect = sal_True );
......
......@@ -271,57 +271,6 @@ int GetCommandLineTokenCount(const rtl::OUString& rLine)
return nTokenCount;
}
int GetCommandLineTokenCount(const rtl::OString& rLine)
{
if (rLine.isEmpty())
return 0;
int nTokenCount = 0;
const char *pRun = rLine.getStr();
while( *pRun )
{
while( *pRun && isSpace( *pRun ) )
pRun++;
if( ! *pRun )
break;
while( *pRun && ! isSpace( *pRun ) )
{
if( *pRun == '\\' )
{
// escapement
pRun++;
if( *pRun )
pRun++;
}
else if( *pRun == '`' )
{
do pRun++; while( *pRun && *pRun != '`' );
if( *pRun )
pRun++;
}
else if( *pRun == '\'' )
{
do pRun++; while( *pRun && *pRun != '\'' );
if( *pRun )
pRun++;
}
else if( *pRun == '"' )
{
do pRun++; while( *pRun && *pRun != '"' );
if( *pRun )
pRun++;
}
else
pRun++;
}
nTokenCount++;
}
return nTokenCount;
}
String WhitespaceToSpace( const String& rLine, sal_Bool bProtect )
{
int nLen = rLine.Len();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment