diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-23 11:50:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-23 13:30:54 +0200 |
commit | d47079668ee1a996685399521092fdaa5560be29 (patch) | |
tree | 9e1fe73fc7ffc4cdcfbf6fa02f444a2b7aa1c92c | |
parent | a07fc5bc15647f8fc368ee81a5dc67652c024eec (diff) |
loplugin:unusedfields in sot/
Change-Id: Ia1711d9289992525ed366f3dedcf95b6289f1eaa
-rw-r--r-- | sot/source/sdstor/ucbstorage.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx index 1668d6df343e..8428604e3169 100644 --- a/sot/source/sdstor/ucbstorage.cxx +++ b/sot/source/sdstor/ucbstorage.cxx @@ -480,7 +480,6 @@ public: SvStream* m_pSource; // original stream, only for storages on a stream ErrCode m_nError; StreamMode m_nMode; // open mode ( read/write/trunc/nocreate/sharing ) - bool m_bModified; // only modified elements will be sent to the original content bool m_bCommited; // sending the streams is coordinated by the root storage of the package bool m_bDirect; // the storage and its streams are opened in direct mode; for UCBStorages // this means that the root storage does an autocommit when its external @@ -1516,7 +1515,6 @@ UCBStorage_Impl::UCBStorage_Impl( const ::ucbhelper::Content& rContent, const OU //, m_pStream( NULL ) , m_nError( 0 ) , m_nMode( nMode ) - , m_bModified( false ) , m_bCommited( false ) , m_bDirect( bDirect ) , m_bIsRoot( bIsRoot ) @@ -1549,7 +1547,6 @@ UCBStorage_Impl::UCBStorage_Impl( const OUString& rName, StreamMode nMode, UCBSt //, m_pStream( NULL ) , m_nError( 0 ) , m_nMode( nMode ) - , m_bModified( false ) , m_bCommited( false ) , m_bDirect( bDirect ) , m_bIsRoot( bIsRoot ) @@ -1600,7 +1597,6 @@ UCBStorage_Impl::UCBStorage_Impl( SvStream& rStream, UCBStorage* pStorage, bool , m_pTempFile( new ::utl::TempFile ) , m_pSource( &rStream ) , m_nError( 0 ) - , m_bModified( false ) , m_bCommited( false ) , m_bDirect( bDirect ) , m_bIsRoot( true ) |