diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-01-31 02:18:11 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-01-31 02:29:23 +0900 |
commit | 6073c31fe8c500066bb033cdb646e9d1cca9b94a (patch) | |
tree | 095e17d1abff7e6196211b3822ed92db27cfa6c5 /basic/source/inc/scanner.hxx | |
parent | 458d56d9b35f2ecb2eea2589737079390b10ee26 (diff) |
Replaced String by rtl::OUString in SbiScanner
Diffstat (limited to 'basic/source/inc/scanner.hxx')
-rw-r--r-- | basic/source/inc/scanner.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/basic/source/inc/scanner.hxx b/basic/source/inc/scanner.hxx index 69c3d87ba3ec..926706cc2af5 100644 --- a/basic/source/inc/scanner.hxx +++ b/basic/source/inc/scanner.hxx @@ -29,12 +29,11 @@ #ifndef _SCANNER_HXX #define _SCANNER_HXX -#include <tools/string.hxx> #include <basic/sberrors.hxx> // The scanner is stand-alone, i. e. it can be used from everywhere. // A BASIC-instance is necessary for error messages. Without BASIC -// the errors are only counted. Also the BASICC is necessary when an +// the errors are only counted. Also the BASIC is necessary when an // advanced SBX-variable shall be used for data type recognition etc. class StarBASIC; @@ -51,7 +50,7 @@ class SbiScanner bool readLine(); protected: ::rtl::OUString aSym; - String aError; + ::rtl::OUString aError; SbxDataType eScanType; StarBASIC* pBasic; // instance for error callbacks double nVal; // numeric value |