From b5e11641a7cec634c603213869a3475b1e01084e Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 25 Mar 2014 11:01:20 +0200 Subject: svtools: sal_Bool->bool Change-Id: I90320997ed79be2556eafa4c35af6b968b378454 --- dbaccess/source/ui/querydesign/JoinExchange.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dbaccess/source/ui/querydesign/JoinExchange.cxx') diff --git a/dbaccess/source/ui/querydesign/JoinExchange.cxx b/dbaccess/source/ui/querydesign/JoinExchange.cxx index 5ee0fb66be3d..4488c5346e8f 100644 --- a/dbaccess/source/ui/querydesign/JoinExchange.cxx +++ b/dbaccess/source/ui/querydesign/JoinExchange.cxx @@ -113,16 +113,16 @@ namespace dbaui AddFormat( SOT_FORMATSTR_ID_SBA_TABID ); } - sal_Bool OJoinExchObj::GetData( const ::com::sun::star::datatransfer::DataFlavor& rFlavor ) + bool OJoinExchObj::GetData( const ::com::sun::star::datatransfer::DataFlavor& rFlavor ) { sal_uInt32 nFormat = SotExchange::GetFormat(rFlavor); if ( SOT_FORMATSTR_ID_SBA_JOIN == nFormat ) // this is a HACK // we don't really copy our data, the instances using us have to call GetSourceDescription .... // if, one day, we have a _lot_ of time, this hack should be removed .... - return sal_True; + return true; - return sal_False; + return false; } Any SAL_CALL OJoinExchObj::queryInterface( const Type& _rType ) throw(RuntimeException, std::exception) -- cgit