From 6073c31fe8c500066bb033cdb646e9d1cca9b94a Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Tue, 31 Jan 2012 02:18:11 +0900 Subject: Replaced String by rtl::OUString in SbiScanner --- basic/source/inc/scanner.hxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'basic/source/inc/scanner.hxx') 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 #include // 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 -- cgit