diff options
Diffstat (limited to 'starmath/source/document.cxx')
-rw-r--r-- | starmath/source/document.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/starmath/source/document.cxx b/starmath/source/document.cxx index da0411cbd974..b8222e2c0a02 100644 --- a/starmath/source/document.cxx +++ b/starmath/source/document.cxx @@ -717,14 +717,13 @@ bool SmDocShell::Load( SfxMedium& rMedium ) if( SfxObjectShell::Load( rMedium )) { uno::Reference < embed::XStorage > xStorage = GetMedium()->GetStorage(); - uno::Reference < container::XNameAccess > xAccess (xStorage, uno::UNO_QUERY); if ( ( - xAccess->hasByName( "content.xml" ) && + xStorage->hasByName( "content.xml" ) && xStorage->isStreamElement( "content.xml" ) ) || ( - xAccess->hasByName( "Content.xml" ) && + xStorage->hasByName( "Content.xml" ) && xStorage->isStreamElement( "Content.xml" ) ) ) |