diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 04:52:05 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 04:52:05 +0000 |
commit | 99f33f044233b985050cdae7b24c873fa2852e25 (patch) | |
tree | bc51c88a259b5335096f0061007d9d00b12a0148 /sot/inc | |
parent | 2fca6c043e9d211e8b7a570a1e5d81de4d294a3a (diff) |
INTEGRATION: CWS warnings01 (1.23.8); FILE MERGED
2005/10/28 16:15:23 pl 1.23.8.1: #i55991# removed warnings for solaris platform
Diffstat (limited to 'sot/inc')
-rw-r--r-- | sot/inc/stg.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sot/inc/stg.hxx b/sot/inc/stg.hxx index dde8cfa93e9d..92704fcd86d2 100644 --- a/sot/inc/stg.hxx +++ b/sot/inc/stg.hxx @@ -4,9 +4,9 @@ * * $RCSfile: stg.hxx,v $ * - * $Revision: 1.23 $ + * $Revision: 1.24 $ * - * last change: $Author: rt $ $Date: 2005-09-08 07:36:46 $ + * last change: $Author: hr $ $Date: 2006-06-20 05:52:05 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -90,9 +90,9 @@ struct ClsId class SOT_DLLPUBLIC StorageBase : public SvRefBase { protected: - ULONG nError; // error code - StreamMode nMode; // open mode - BOOL bAutoCommit; + ULONG m_nError; // error code + StreamMode m_nMode; // open mode + BOOL m_bAutoCommit; StorageBase(); virtual ~StorageBase(); public: @@ -103,10 +103,10 @@ public: void ResetError() const; void SetError( ULONG ) const; ULONG GetError() const; - BOOL Good() const { return BOOL( nError == SVSTREAM_OK ); } - StreamMode GetMode() const { return nMode; } + BOOL Good() const { return BOOL( m_nError == SVSTREAM_OK ); } + StreamMode GetMode() const { return m_nMode; } void SetAutoCommit( BOOL bSet ) - { bAutoCommit = bSet; } + { m_bAutoCommit = bSet; } }; class BaseStorageStream : public StorageBase @@ -315,7 +315,7 @@ public: namespace ucb { class Content; -}; +} class UCBStorage_Impl; struct UCBStorageElement_Impl; |