summaryrefslogtreecommitdiff
path: root/sot
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
parent19310906553d846104cff9fe7df54d40068ddbc0 (diff)
tools: prefix members of SvStream
Change-Id: Iba845749d645bc1cf9eb6d6c41829717831bc487
Diffstat (limited to 'sot')
-rw-r--r--sot/source/sdstor/stgole.cxx2
-rw-r--r--sot/source/sdstor/storage.cxx12
2 files changed, 7 insertions, 7 deletions
diff --git a/sot/source/sdstor/stgole.cxx b/sot/source/sdstor/stgole.cxx
index 6d5ff467f4b7..67657b2fae77 100644
--- a/sot/source/sdstor/stgole.cxx
+++ b/sot/source/sdstor/stgole.cxx
@@ -32,7 +32,7 @@
StgInternalStream::StgInternalStream( BaseStorage& rStg, const OUString& rName, bool bWr )
{
- bIsWritable = true;
+ m_isWritable = true;
StreamMode nMode = bWr
? StreamMode::WRITE | StreamMode::SHARE_DENYALL
: StreamMode::READ | StreamMode::SHARE_DENYWRITE | StreamMode::NOCREATE;
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()