diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-06 16:28:57 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-07 11:05:02 +0200 |
commit | 60bbbcabed5ddf477a17970af79f464fc5e98753 (patch) | |
tree | ef1749616721f9f79264d7e653d5d23ab6c30955 /sw | |
parent | bb2174d86728a3aead640032745b1e781d7f818b (diff) |
Remove SvStorageStream alias
Change-Id: I9d835e6032e2366e5357240609ff0e60273d475b
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/ww8par4.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/ww8/ww8par4.cxx b/sw/source/filter/ww8/ww8par4.cxx index 693b8885630e..bb5359aab99b 100644 --- a/sw/source/filter/ww8/ww8par4.cxx +++ b/sw/source/filter/ww8/ww8par4.cxx @@ -84,7 +84,7 @@ static bool SwWw8ReadScaling(long& rX, long& rY, SvStorageRef& rSrc1) SotStorageStreamRef xSrc3 = rSrc1->OpenSotStream( OUString("\3PIC"), STREAM_STD_READ | StreamMode::NOCREATE); - SvStorageStream* pS = xSrc3; + SotStorageStream* pS = xSrc3; pS->SetEndian( SvStreamEndian::LITTLE ); pS->Seek( STREAM_SEEK_TO_END ); @@ -129,7 +129,7 @@ static bool SwWw6ReadMetaStream(GDIMetaFile& rWMF, OLE_MFP* pMfp, { SotStorageStreamRef xSrc2 = rSrc1->OpenSotStream( OUString("\3META"), STREAM_STD_READ | StreamMode::NOCREATE); - SvStorageStream* pSt = xSrc2; + SotStorageStream* pSt = xSrc2; pSt->SetEndian( SvStreamEndian::LITTLE ); sal_uLong nRead = pSt->Read( pMfp, sizeof(*pMfp ) ); // Mini-Placable-Header lesen @@ -183,7 +183,7 @@ static bool SwWw6ReadMacPICTStream(Graphic& rGraph, SvStorageRef& rSrc1) { // 03-META-Stream nicht da. Vielleicht ein 03-PICT ? SotStorageStreamRef xSrc4 = rSrc1->OpenSotStream(OUString("\3PICT")); - SvStorageStream* pStp = xSrc4; + SotStorageStream* pStp = xSrc4; pStp->SetEndian( SvStreamEndian::LITTLE ); sal_uInt8 aTestA[10]; // Ist der 01Ole-Stream ueberhaupt vorhanden sal_uLong nReadTst = pStp->Read( aTestA, sizeof( aTestA ) ); |