summaryrefslogtreecommitdiff
path: root/basic/source/sbx/sbxvar.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/sbx/sbxvar.cxx')
-rw-r--r--basic/source/sbx/sbxvar.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/sbx/sbxvar.cxx b/basic/source/sbx/sbxvar.cxx
index 60e344840f42..9c8d13f10cce 100644
--- a/basic/source/sbx/sbxvar.cxx
+++ b/basic/source/sbx/sbxvar.cxx
@@ -230,7 +230,7 @@ const XubString& SbxVariable::GetName( SbxNameType t ) const
if( !pInfo
|| ( pInfo->aParams.empty() && GetClass() == SbxCLASS_PROPERTY ) )
return maName;
- xub_Unicode cType = ' ';
+ sal_Unicode cType = ' ';
XubString aTmp( maName );
// short type? Then fetch it, posible this is 0.
SbxDataType et = GetType();
@@ -304,7 +304,7 @@ sal_uInt16 SbxVariable::MakeHashCode( const XubString& rName )
sal_uInt16 nLen = rName.Len();
if( nLen > 6 )
nLen = 6;
- const xub_Unicode* p = rName.GetBuffer();
+ const sal_Unicode* p = rName.GetBuffer();
while( nLen-- )
{
sal_uInt8 c = (sal_uInt8)*p;