summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-04-26 02:51:37 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2013-04-26 16:49:45 +0200
commite3d0f6ad119b8421a12d02c26d7410599ebb33e1 (patch)
tree5fc684d9d2d2a1073f666156c2df8a8460b9ef8f
parent2324681b5187fe2c8f174084a7f70d2256632967 (diff)
sal_Bool -> bool
Change-Id: I157e0e84cbc9832dd863607b8f52359596b51c8c
-rw-r--r--connectivity/source/parse/sqlnode.cxx4
-rw-r--r--include/connectivity/sqlnode.hxx4
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,