summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/inc/tools/globname.hxx4
-rwxr-xr-xtools/source/ref/globname.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/inc/tools/globname.hxx b/tools/inc/tools/globname.hxx
index 5dc2e6215de9..026e4c51b9ac 100755
--- a/tools/inc/tools/globname.hxx
+++ b/tools/inc/tools/globname.hxx
@@ -36,7 +36,7 @@
*************************************************************************/
struct ImpSvGlobalName
{
- sal_Int8 szData[ 16 ];
+ sal_uInt8 szData[ 16 ];
sal_uInt16 nRefCount;
ImpSvGlobalName()
@@ -110,7 +110,7 @@ public:
SvGlobalName( const CLSID & rId );
const CLSID & GetCLSID() const { return *(CLSID *)pImp->szData; }
- const sal_Int8* GetBytes() const { return pImp->szData; }
+ const sal_uInt8* GetBytes() const { return pImp->szData; }
// platform independent representation of a "GlobalName"
// maybe transported remotely
diff --git a/tools/source/ref/globname.cxx b/tools/source/ref/globname.cxx
index 22fd347eebdf..0228aeef9e81 100755
--- a/tools/source/ref/globname.cxx
+++ b/tools/source/ref/globname.cxx
@@ -78,7 +78,7 @@ struct GUID
sal_uInt32 Data1;
sal_uInt16 Data2;
sal_uInt16 Data3;
- sal_Int8 Data4[8];
+ sal_uInt8 Data4[8];
};
SvGlobalName::SvGlobalName( const CLSID & rId )
{