summaryrefslogtreecommitdiff
path: root/sot/source/sdstor/stg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sot/source/sdstor/stg.cxx')
-rw-r--r--sot/source/sdstor/stg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sot/source/sdstor/stg.cxx b/sot/source/sdstor/stg.cxx
index d6ae01ea7cea..84219df91e69 100644
--- a/sot/source/sdstor/stg.cxx
+++ b/sot/source/sdstor/stg.cxx
@@ -977,11 +977,11 @@ SvGlobalName Storage::GetClassName()
{
StgCompObjStream aCompObj( *this, false );
if( aCompObj.Load() )
- return SvGlobalName( (const CLSID&) aCompObj.GetClsId() );
+ return SvGlobalName( aCompObj.GetClsId() );
pIo->ResetError();
if ( pEntry )
- return SvGlobalName( (const CLSID&) pEntry->aEntry.GetClassId() );
+ return SvGlobalName( pEntry->aEntry.GetClassId() );
return SvGlobalName();
}
@@ -1041,7 +1041,7 @@ const ClsId& Storage::GetClassId() const
if ( pEntry )
return pEntry->aEntry.GetClassId();
- static ClsId aDummyId = {0,0,0,0,0,0,0,0,0,0,0};
+ static ClsId aDummyId = {0,0,0,{0,0,0,0,0,0,0,0}};
return aDummyId;
}