summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sot/source/sdstor/stgole.cxx4
-rw-r--r--sot/source/sdstor/stgole.hxx2
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();