summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-06 16:29:44 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-07 11:05:03 +0200
commit2aa9110ed0bf8c4e678caffa1677143b3290240b (patch)
tree60167bf24aa2f594a18e3326823faf09a32b200d /starmath
parent60bbbcabed5ddf477a17970af79f464fc5e98753 (diff)
Remove SvStorageRef alias
Change-Id: Icd1bf88cefac929916ece9a30b9b65c5297ec2a3
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/document.cxx2
-rw-r--r--starmath/source/mathtype.cxx2
-rw-r--r--starmath/source/unofilter.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/starmath/source/document.cxx b/starmath/source/document.cxx
index 986e109d6ef1..b17665f36a1b 100644
--- a/starmath/source/document.cxx
+++ b/starmath/source/document.cxx
@@ -724,7 +724,7 @@ bool SmDocShell::ConvertFrom(SfxMedium &rMedium)
{
if ( SotStorage::IsStorageFile( pStream ) )
{
- SvStorageRef aStorage = new SotStorage( pStream, false );
+ SotStorageRef aStorage = new SotStorage( pStream, false );
if ( aStorage->IsStream(OUString("Equation Native")) )
{
// is this a MathType Storage?
diff --git a/starmath/source/mathtype.cxx b/starmath/source/mathtype.cxx
index 782e0a891ed7..c93abc95dd31 100644
--- a/starmath/source/mathtype.cxx
+++ b/starmath/source/mathtype.cxx
@@ -1885,7 +1885,7 @@ int MathType::ConvertFromStarMath( SfxMedium& rMedium )
SvStream *pStream = rMedium.GetOutStream();
if ( pStream )
{
- SvStorageRef pStor = new SotStorage( pStream, false );
+ SotStorageRef pStor = new SotStorage( pStream, false );
SvGlobalName aGName(0x0002ce02L, 0x0000, 0x0000,0xc0,0x00,
0x00,0x00,0x00,0x00,0x00,0x46 );
diff --git a/starmath/source/unofilter.cxx b/starmath/source/unofilter.cxx
index 423c46c7ee4f..c89f21532dd0 100644
--- a/starmath/source/unofilter.cxx
+++ b/starmath/source/unofilter.cxx
@@ -75,7 +75,7 @@ sal_Bool MathTypeFilter::filter(const uno::Sequence<beans::PropertyValue>& rDesc
{
if (SotStorage::IsStorageFile(pStream.get()))
{
- SvStorageRef aStorage(new SotStorage(pStream.get(), false));
+ SotStorageRef aStorage(new SotStorage(pStream.get(), false));
// Is this a MathType Storage?
if (aStorage->IsStream(OUString("Equation Native")))
{