summaryrefslogtreecommitdiff
path: root/sot/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-02-04 16:25:59 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-02-04 16:25:59 +0100
commitbde184dcf74e988f711606b66dc660724e270565 (patch)
treeedab8799a994ee8a650cd309966f526caada5ae3 /sot/inc
parent50685e3caf8d27d624a9006d578f686dfbe020c5 (diff)
warning C4805: '!=' unsafe mix of type 'bool' and type 'sal_Bool'
Change-Id: Iaf8de7c729b3cefed8620dec7fe4dd1427305e50
Diffstat (limited to 'sot/inc')
-rw-r--r--sot/inc/sot/stg.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sot/inc/sot/stg.hxx b/sot/inc/sot/stg.hxx
index 98a09cecad50..61a047650a3c 100644
--- a/sot/inc/sot/stg.hxx
+++ b/sot/inc/sot/stg.hxx
@@ -116,7 +116,7 @@ public:
sal_Bool bDirect = sal_True, const rtl::OString* pKey=0 ) = 0;
virtual BaseStorage* OpenStorage( const String & rEleName,
StreamMode = STREAM_STD_READWRITE,
- sal_Bool bDirect = sal_False ) = 0;
+ bool bDirect = false ) = 0;
virtual BaseStorage* OpenUCBStorage( const String & rEleName,
StreamMode = STREAM_STD_READWRITE,
sal_Bool bDirect = sal_False ) = 0;
@@ -216,7 +216,7 @@ public:
sal_Bool bDirect = sal_True, const rtl::OString* pKey=0 );
virtual BaseStorage* OpenStorage( const String & rEleName,
StreamMode = STREAM_STD_READWRITE,
- sal_Bool bDirect = sal_False );
+ bool bDirect = false );
virtual BaseStorage* OpenUCBStorage( const String & rEleName,
StreamMode = STREAM_STD_READWRITE,
sal_Bool bDirect = sal_False );
@@ -332,7 +332,7 @@ public:
sal_Bool bDirect = sal_True, const rtl::OString* pKey=0 );
virtual BaseStorage* OpenStorage( const String & rEleName,
StreamMode = STREAM_STD_READWRITE,
- sal_Bool bDirect = sal_False );
+ bool bDirect = false );
virtual BaseStorage* OpenUCBStorage( const String & rEleName,
StreamMode = STREAM_STD_READWRITE,
sal_Bool bDirect = sal_False );