diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-10-09 08:04:39 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-10-09 08:05:50 +0200 |
commit | 854af5a574a9d0d3e8e56f83c4853cfad872f456 (patch) | |
tree | 604f2c44e7f2e3bc44450084ca27c8cde01145c7 /sot | |
parent | cffc1d5fde23213d115d02f58e8250f6a3f705c4 (diff) |
sot: prefix members of StgOleStream
Change-Id: I8a1fb10696a73134bf15fb7721cc5f78cc91eb98
Diffstat (limited to 'sot')
-rw-r--r-- | sot/source/sdstor/stgole.cxx | 4 | ||||
-rw-r--r-- | sot/source/sdstor/stgole.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
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(); |