diff options
author | Xisco Fauli <anistenis@gmail.com> | 2011-03-22 08:03:25 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-03-22 08:03:25 +0100 |
commit | 1a0760384e16a390a3a29c414db9ccc4180202b7 (patch) | |
tree | e72f628743e15930834770328a934ec5afa0084f /basic/inc | |
parent | 3117cd00578eb21ec6344799e8bd65a38f59077e (diff) |
Replace String with rtl::OUString
Diffstat (limited to 'basic/inc')
-rwxr-xr-x | basic/inc/basic/sbdef.hxx | 3 | ||||
-rwxr-xr-x | basic/inc/basic/sbuno.hxx | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/basic/inc/basic/sbdef.hxx b/basic/inc/basic/sbdef.hxx index 85218a34965f..43d35d011b5c 100755 --- a/basic/inc/basic/sbdef.hxx +++ b/basic/inc/basic/sbdef.hxx @@ -31,6 +31,7 @@ #include <basic/sbxdef.hxx> #include <svl/svarray.hxx> +#include <rtl/ustring.hxx> #define _BASIC_TEXTPORTIONS @@ -76,7 +77,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 100755 --- 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 ); |