diff options
author | Xisco Fauli <anistenis@gmail.com> | 2011-04-19 18:01:53 +0100 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2011-04-19 18:01:53 +0100 |
commit | 8a75a1f07d0c575ef08ab8385df3ef45e8552df1 (patch) | |
tree | 2e96860ccfbe43ffc79abc791ce76196e6b43f56 /basic/inc | |
parent | 3437d2196b1ca722a6146b40b4e06912482cedcd (diff) |
Replace String with rtl::OUString in various places
Diffstat (limited to 'basic/inc')
-rw-r--r-- | basic/inc/basic/sbdef.hxx | 5 | ||||
-rw-r--r-- | basic/inc/basic/sbuno.hxx | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/basic/inc/basic/sbdef.hxx b/basic/inc/basic/sbdef.hxx index 85218a34965f..7877ea5f9060 100644 --- a/basic/inc/basic/sbdef.hxx +++ b/basic/inc/basic/sbdef.hxx @@ -31,6 +31,9 @@ #include <basic/sbxdef.hxx> #include <svl/svarray.hxx> +#include <rtl/ustring.hxx> + +using rtl::OUString; #define _BASIC_TEXTPORTIONS @@ -76,7 +79,7 @@ String getBasicTypeName( SbxDataType eType ); // important for SbUnoObj instances // implementation: basic/source/classes/sbunoobj.cxx class SbxObject; -String getBasicObjectTypeName( SbxObject* pObj ); +::rtl::OUString getBasicObjectTypeName( SbxObject* pObj ); // Allows Basic IDE to set watch mode to suppress errors // implementation: basic/source/runtime/runtime.cxx diff --git a/basic/inc/basic/sbuno.hxx b/basic/inc/basic/sbuno.hxx index 0539246e071b..faeb99ef2160 100644 --- a/basic/inc/basic/sbuno.hxx +++ b/basic/inc/basic/sbuno.hxx @@ -35,7 +35,7 @@ namespace com { namespace sun { namespace star { namespace uno { class Any; }}}} // Returns a SbxObject that wrapps an Uno Interface // Implementation in basic/source/classes/sbunoobj.cxx -SbxObjectRef GetSbUnoObject( const String& aName, const com::sun::star::uno::Any& aUnoObj_ ); +SbxObjectRef GetSbUnoObject( const ::rtl::OUString& aName, const com::sun::star::uno::Any& aUnoObj_ ); // Force creation of all properties for debugging void createAllObjectProperties( SbxObject* pObj ); |