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/inc | |
parent | 458d56d9b35f2ecb2eea2589737079390b10ee26 (diff) |
Replaced String by rtl::OUString in SbiScanner
Diffstat (limited to 'basic/inc')
-rw-r--r-- | basic/inc/basic/sbstar.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/inc/basic/sbstar.hxx b/basic/inc/basic/sbstar.hxx index dc6622e7f274..7cf87ea3bfad 100644 --- a/basic/inc/basic/sbstar.hxx +++ b/basic/inc/basic/sbstar.hxx @@ -82,7 +82,7 @@ class BASIC_DLLPUBLIC StarBASIC : public SbxObject BASIC_DLLPRIVATE void implClearDependingVarsOnDelete( StarBASIC* pDeletedBasic ); protected: - sal_Bool CError( SbError, const String&, xub_StrLen, xub_StrLen, xub_StrLen ); + sal_Bool CError( SbError, const ::rtl::OUString&, xub_StrLen, xub_StrLen, xub_StrLen ); private: BASIC_DLLPRIVATE sal_Bool RTError( SbError, xub_StrLen, xub_StrLen, xub_StrLen ); BASIC_DLLPRIVATE sal_Bool RTError( SbError, const String& rMsg, xub_StrLen, xub_StrLen, xub_StrLen ); @@ -154,7 +154,7 @@ public: sal_uInt16 nCol1, sal_uInt16 nCol2 ); // Specific to error handler - static void MakeErrorText( SbError, const String& aMsg ); + static void MakeErrorText( SbError, const ::rtl::OUString& aMsg ); static const String& GetErrorText(); static SbError GetErrorCode(); static sal_Bool IsCompilerError(); |