diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-30 11:46:15 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-05-02 08:49:22 +0200 |
commit | 7ae4102f171c5f0d452fa78c5c17722bc9649fc5 (patch) | |
tree | 40ff03aeaabe4adfdd90bdb82cb6ef6b80381795 /extensions/source/abpilot/datasourcehandling.hxx | |
parent | 7d2cf383667106efe3e2ea6099fe52206b685c5d (diff) |
extensions: sal_Bool->bool
Change-Id: I1730f99c08690138e9aa7aba54304fd7bc51491d
Diffstat (limited to 'extensions/source/abpilot/datasourcehandling.hxx')
-rw-r--r-- | extensions/source/abpilot/datasourcehandling.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/abpilot/datasourcehandling.hxx b/extensions/source/abpilot/datasourcehandling.hxx index b4d71ffa4ab0..1991d291b5d0 100644 --- a/extensions/source/abpilot/datasourcehandling.hxx +++ b/extensions/source/abpilot/datasourcehandling.hxx @@ -133,7 +133,7 @@ namespace abp /// checks whether or not the object represents a valid data source - sal_Bool isValid() const SAL_THROW (( )); + bool isValid() const SAL_THROW (( )); /// removes the data source represented by the object from the data source context @@ -145,7 +145,7 @@ namespace abp getName() const SAL_THROW (( )); /// renames the data source - sal_Bool rename( const OUString& _rName ) SAL_THROW (( )); + bool rename( const OUString& _rName ) SAL_THROW (( )); // TODO: put this into the context class @@ -157,10 +157,10 @@ namespace abp at all. @see isConnected */ - sal_Bool connect( Window* _pMessageParent ) SAL_THROW (( )); + bool connect( Window* _pMessageParent ) SAL_THROW (( )); /// returns <TRUE/> if the object has a valid connection, obtained from it's data source - sal_Bool isConnected( ) const SAL_THROW (( )); + bool isConnected( ) const SAL_THROW (( )); /// disconnects from the data source (i.e. disposes the UNO connection hold internally) void disconnect( ) SAL_THROW (( )); |