From c40cd8a4f203a4f817a77ab850e5027f8bae9b91 Mon Sep 17 00:00:00 2001 From: Marcos Paulo de Souza Date: Sun, 30 Dec 2012 13:07:28 -0200 Subject: Remove all occurences of RTL_* and ::rtl prefix from basic This is a big commit, so thanks for your time reviewing this :) Conflicts: basic/source/sbx/sbxscan.cxx Change-Id: Ib9bc710b87475b5695764557321e5dcef25e5933 Signed-off-by: Miklos Vajna --- basic/source/comp/parser.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'basic/source/comp/parser.cxx') diff --git a/basic/source/comp/parser.cxx b/basic/source/comp/parser.cxx index a4a4501077d9..28c553fb999d 100644 --- a/basic/source/comp/parser.cxx +++ b/basic/source/comp/parser.cxx @@ -134,7 +134,7 @@ SbiParser::SbiParser( StarBASIC* pb, SbModule* pm ) bSingleLineIf = bExplicit = false; bClassModule = ( pm->GetModuleType() == com::sun::star::script::ModuleType::CLASS ); - OSL_TRACE("Parser - %s, bClassModule %d", rtl::OUStringToOString( pm->GetName(), RTL_TEXTENCODING_UTF8 ).getStr(), bClassModule ); + OSL_TRACE("Parser - %s, bClassModule %d", OUStringToOString( pm->GetName(), RTL_TEXTENCODING_UTF8 ).getStr(), bClassModule ); pPool = &aPublics; for( short i = 0; i < 26; i++ ) eDefTypes[ i ] = SbxVARIANT; // no explicit default type @@ -783,7 +783,7 @@ void SbiParser::Option() { bText = false; } - else if( eTok == SYMBOL && GetSym().equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("text")) ) + else if( eTok == SYMBOL && GetSym().equalsIgnoreAsciiCase("text") ) { bText = true; } @@ -837,7 +837,7 @@ void addStringConst( SbiSymPool& rPool, const char* pSym, const OUString& rStr ) inline void addStringConst( SbiSymPool& rPool, const char* pSym, const char* pStr ) { - addStringConst( rPool, pSym, rtl::OUString::createFromAscii( pStr ) ); + addStringConst( rPool, pSym, OUString::createFromAscii( pStr ) ); } void SbiParser::AddConstants( void ) -- cgit