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 /sd | |
parent | bb2174d86728a3aead640032745b1e781d7f818b (diff) |
Remove SvStorageStream alias
Change-Id: I9d835e6032e2366e5357240609ff0e60273d475b
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/ppt/propread.cxx | 2 | ||||
-rw-r--r-- | sd/source/filter/ppt/propread.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/filter/ppt/propread.cxx b/sd/source/filter/ppt/propread.cxx index 18ff39048dc4..1c22e50b713f 100644 --- a/sd/source/filter/ppt/propread.cxx +++ b/sd/source/filter/ppt/propread.cxx @@ -304,7 +304,7 @@ bool Section::GetDictionary( Dictionary& rDict ) return bRetValue; } -void Section::Read( SvStorageStream *pStrm ) +void Section::Read( SotStorageStream *pStrm ) { sal_uInt32 i, nSecOfs, nSecSize, nPropCount, nPropId, nPropOfs, nPropType, nPropSize, nCurrent, nVectorCount, nTemp, nStrmSize; nSecOfs = pStrm->Tell(); diff --git a/sd/source/filter/ppt/propread.hxx b/sd/source/filter/ppt/propread.hxx index fbd619d771aa..871118bc731c 100644 --- a/sd/source/filter/ppt/propread.hxx +++ b/sd/source/filter/ppt/propread.hxx @@ -133,7 +133,7 @@ class Section bool GetProperty( sal_uInt32 nId, PropItem& rPropItem ); bool GetDictionary( Dictionary& rDict ); const sal_uInt8* GetFMTID() const { return aFMTID; }; - void Read( SvStorageStream* pStrm ); + void Read( SotStorageStream* pStrm ); }; class PropRead |