From 854af5a574a9d0d3e8e56f83c4853cfad872f456 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Fri, 9 Oct 2015 08:04:39 +0200 Subject: sot: prefix members of StgOleStream Change-Id: I8a1fb10696a73134bf15fb7721cc5f78cc91eb98 --- sot/source/sdstor/stgole.cxx | 4 ++-- sot/source/sdstor/stgole.hxx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'sot') diff --git a/sot/source/sdstor/stgole.cxx b/sot/source/sdstor/stgole.cxx index 9cd17987e9aa..886a7306822b 100644 --- a/sot/source/sdstor/stgole.cxx +++ b/sot/source/sdstor/stgole.cxx @@ -166,7 +166,7 @@ bool StgCompObjStream::Store() StgOleStream::StgOleStream( BaseStorage& rStg, bool bWr ) : StgInternalStream( rStg, OUString("\1Ole"), bWr ) { - nFlags = 0; + m_nFlags = 0; } bool StgOleStream::Store() @@ -176,7 +176,7 @@ bool StgOleStream::Store() Seek( 0L ); WriteInt32( 0x02000001 ); // OLE version, format - WriteInt32( nFlags ); // Object flags + WriteInt32( m_nFlags ); // Object flags WriteInt32( 0 ); // Update Options WriteInt32( 0 ); // reserved WriteInt32( 0 ); // Moniker 1 diff --git a/sot/source/sdstor/stgole.hxx b/sot/source/sdstor/stgole.hxx index a34dbb2a52c6..b1c2db502306 100644 --- a/sot/source/sdstor/stgole.hxx +++ b/sot/source/sdstor/stgole.hxx @@ -58,7 +58,7 @@ public: class StgOleStream : public StgInternalStream { - sal_uInt32 nFlags; + sal_uInt32 m_nFlags; public: StgOleStream( BaseStorage&, bool ); bool Store(); -- cgit