From e3d0f6ad119b8421a12d02c26d7410599ebb33e1 Mon Sep 17 00:00:00 2001 From: Lionel Elie Mamane Date: Fri, 26 Apr 2013 02:51:37 +0200 Subject: sal_Bool -> bool Change-Id: I157e0e84cbc9832dd863607b8f52359596b51c8c --- connectivity/source/parse/sqlnode.cxx | 4 ++-- include/connectivity/sqlnode.hxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/connectivity/source/parse/sqlnode.cxx b/connectivity/source/parse/sqlnode.cxx index 391e6d60d322..21275b460502 100644 --- a/connectivity/source/parse/sqlnode.cxx +++ b/connectivity/source/parse/sqlnode.cxx @@ -209,8 +209,8 @@ OUString OSQLParseNode::convertTimeString(const SQLParseNodeParameter& rParam, c void OSQLParseNode::parseNodeToStr(OUString& rString, const Reference< XConnection >& _rxConnection, const IParseContext* pContext, - sal_Bool _bIntl, - sal_Bool _bQuote) const + bool _bIntl, + bool _bQuote) const { RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "parse", "Ocke.Janssen@sun.com", "OSQLParseNode::parseNodeToStr" ); diff --git a/include/connectivity/sqlnode.hxx b/include/connectivity/sqlnode.hxx index f988f78e7e14..940b27f25950 100644 --- a/include/connectivity/sqlnode.hxx +++ b/include/connectivity/sqlnode.hxx @@ -314,8 +314,8 @@ namespace connectivity void parseNodeToStr(OUString& rString, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _rxConnection, const IParseContext* pContext = NULL, - sal_Bool _bIntl = sal_False, - sal_Bool _bQuote= sal_True) const; + bool _bIntl = sal_False, + bool _bQuote= sal_True) const; // quoted and internationalised void parseNodeToPredicateStr(OUString& rString, -- cgit