From 186b4ebc99a2e80740fee51f9d0276886a003617 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 30 Jan 2014 13:46:42 +0200 Subject: convert specialised SvStream::operator>> methods to ReadXXX methods as preparation for converting the SvStream::operator>> methods on primitive types Change-Id: I62f134bced15c687d6e0d46924f56e8d1c3d95b9 Reviewed-on: https://gerrit.libreoffice.org/7798 Tested-by: LibreOffice gerrit bot Reviewed-by: Michael Stahl --- sd/source/filter/ppt/pptatom.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sd/source/filter/ppt/pptatom.cxx') diff --git a/sd/source/filter/ppt/pptatom.cxx b/sd/source/filter/ppt/pptatom.cxx index 51afde39e573..69d964a7dba7 100644 --- a/sd/source/filter/ppt/pptatom.cxx +++ b/sd/source/filter/ppt/pptatom.cxx @@ -46,7 +46,7 @@ Atom::Atom( const DffRecordHeader& rRecordHeader, SvStream& rStream ) && ( mrStream.Tell() < nStreamSize ) && ( mrStream.Tell() < maRecordHeader.GetRecEndFilePos() ) ) { - mrStream >> aChildHeader; + ReadDffRecordHeader( mrStream, aChildHeader ); if( mrStream.GetError() == 0 ) { -- cgit