summaryrefslogtreecommitdiffstats
path: root/basic/source/inc/token.hxx
diff options
context:
space:
mode:
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>2012-12-30 13:07:28 -0200
committerMiklos Vajna <vmiklos@suse.cz>2013-01-03 10:07:39 +0100
commitc40cd8a4f203a4f817a77ab850e5027f8bae9b91 (patch)
treeee6c7cc0ca9fc79570898f31ff5b96dfc3b8d31a /basic/source/inc/token.hxx
parentfdo#58539: Check for mxValueLink being NULL before dereferencing. (diff)
downloadcore-c40cd8a4f203a4f817a77ab850e5027f8bae9b91.tar.gz
core-c40cd8a4f203a4f817a77ab850e5027f8bae9b91.zip
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 <vmiklos@suse.cz>
Diffstat (limited to 'basic/source/inc/token.hxx')
-rw-r--r--basic/source/inc/token.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/inc/token.hxx b/basic/source/inc/token.hxx
index 5054bd9a440d..0ce9cf443f58 100644
--- a/basic/source/inc/token.hxx
+++ b/basic/source/inc/token.hxx
@@ -143,14 +143,14 @@ protected:
bool bAs; // last keyword was AS
bool bErrorIsSymbol; // Handle Error token as Symbol, not keyword
public:
- SbiTokenizer( const ::rtl::OUString&, StarBASIC* = NULL );
+ SbiTokenizer( const OUString&, StarBASIC* = NULL );
~SbiTokenizer();
inline bool IsEof() { return bEof; }
inline bool IsEos() { return bEos; }
void Push( SbiToken );
- const ::rtl::OUString& Symbol( SbiToken ); // reconversion
+ const OUString& Symbol( SbiToken ); // reconversion
SbiToken Peek(); // read the next token
SbiToken Next(); // read a token
@@ -159,7 +159,7 @@ public:
void Error( SbError c ) { GenError( c ); }
void Error( SbError, SbiToken );
void Error( SbError, const char* );
- void Error( SbError, const ::rtl::OUString &);
+ void Error( SbError, const OUString &);
static bool IsEoln( SbiToken t )
{ return t == EOS || t == EOLN || t == REM; }