From 8d6a99f67edc3be61f1294f963c3bbbd2b7344f6 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 1 Apr 2014 09:53:24 +0200 Subject: dbaccess: sal_Bool->bool Change-Id: Ida8ee14bb6350fad815d741ca7a2b7db04a8ed11 --- include/dbaccess/IController.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/dbaccess/IController.hxx') diff --git a/include/dbaccess/IController.hxx b/include/dbaccess/IController.hxx index 7d816728d8cb..7b76dee98577 100644 --- a/include/dbaccess/IController.hxx +++ b/include/dbaccess/IController.hxx @@ -73,7 +73,7 @@ namespace dbaui @return if the command is allowed, otherwise . */ - virtual sal_Bool isCommandEnabled(sal_uInt16 _nCommandId) const = 0; + virtual bool isCommandEnabled(sal_uInt16 _nCommandId) const = 0; /** checks if the given Command is enabled @param _rCompleteCommandURL @@ -82,7 +82,7 @@ namespace dbaui @return if the command is allowed, otherwise . */ - virtual sal_Bool isCommandEnabled( const OUString& _rCompleteCommandURL ) const = 0; + virtual bool isCommandEnabled( const OUString& _rCompleteCommandURL ) const = 0; /** registers a command URL, giving it a unique name @@ -108,7 +108,7 @@ namespace dbaui @return if read only, otherwise */ - virtual sal_Bool isDataSourceReadOnly() const = 0; + virtual bool isDataSourceReadOnly() const = 0; /** provides access to the model of the controller -- cgit