diff options
Diffstat (limited to 'include/sot/stg.hxx')
-rw-r--r-- | include/sot/stg.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sot/stg.hxx b/include/sot/stg.hxx index 3a11b4e2298d..a61094730680 100644 --- a/include/sot/stg.hxx +++ b/include/sot/stg.hxx @@ -58,7 +58,7 @@ public: void ResetError() const; void SetError( ErrCode ) const; ErrCode GetError() const; - bool Good() const { return bool( m_nError == SVSTREAM_OK ); } + bool Good() const { return m_nError == SVSTREAM_OK; } StreamMode GetMode() const { return m_nMode; } void SetAutoCommit( bool bSet ) { m_bAutoCommit = bSet; } |