summaryrefslogtreecommitdiff
path: root/sot/source/sdstor/storage.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-07-31 13:50:46 +0200
committerMichael Stahl <mstahl@redhat.com>2015-07-31 14:45:38 +0200
commitaedd003086e5d14dad584e4bd36ab5e4c06e0e18 (patch)
tree91a6a40aab82b1319ca0945b95790634d5838254 /sot/source/sdstor/storage.cxx
parent19310906553d846104cff9fe7df54d40068ddbc0 (diff)
tools: prefix members of SvStream
Change-Id: Iba845749d645bc1cf9eb6d6c41829717831bc487
Diffstat (limited to 'sot/source/sdstor/storage.cxx')
-rw-r--r--sot/source/sdstor/storage.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sot/source/sdstor/storage.cxx b/sot/source/sdstor/storage.cxx
index db02b1750256..67307125f11e 100644
--- a/sot/source/sdstor/storage.cxx
+++ b/sot/source/sdstor/storage.cxx
@@ -107,9 +107,9 @@ SotStorageStream::SotStorageStream( const OUString & rName, StreamMode nMode )
, pOwnStm( NULL )
{
if( nMode & StreamMode::WRITE )
- bIsWritable = true;
+ m_isWritable = true;
else
- bIsWritable = false;
+ m_isWritable = false;
}
SotStorageStream::SotStorageStream( BaseStorageStream * pStm )
@@ -117,9 +117,9 @@ SotStorageStream::SotStorageStream( BaseStorageStream * pStm )
if( pStm )
{
if( StreamMode::WRITE & pStm->GetMode() )
- bIsWritable = true;
+ m_isWritable = true;
else
- bIsWritable = false;
+ m_isWritable = false;
pOwnStm = pStm;
SetError( pStm->GetError() );
@@ -128,7 +128,7 @@ SotStorageStream::SotStorageStream( BaseStorageStream * pStm )
else
{
pOwnStm = NULL;
- bIsWritable = true;
+ m_isWritable = true;
SetError( SVSTREAM_INVALID_PARAMETER );
}
}
@@ -137,7 +137,7 @@ SotStorageStream::SotStorageStream()
: pOwnStm( NULL )
{
// ??? wenn Init virtuell ist, entsprechen setzen
- bIsWritable = true;
+ m_isWritable = true;
}
SotStorageStream::~SotStorageStream()