summaryrefslogtreecommitdiff
path: root/mysqlc/source/mysqlc_preparedstatement.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-07-02 08:42:58 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-07-02 08:42:58 +0200
commitdbf99dfb980f772250e8ec4792c1bf5a1458629b (patch)
tree84dfe95482e1173b6e9bfb8edaf47639d05c247c /mysqlc/source/mysqlc_preparedstatement.cxx
parent4776da791f69fa14104f054923be25618c297398 (diff)
mysqlc: sal_Bool -> bool
Change-Id: Ie479e1671b03fbb958886d4c01ecff41b2ad1d23
Diffstat (limited to 'mysqlc/source/mysqlc_preparedstatement.cxx')
-rw-r--r--mysqlc/source/mysqlc_preparedstatement.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysqlc/source/mysqlc_preparedstatement.cxx b/mysqlc/source/mysqlc_preparedstatement.cxx
index 7abf172faaf0..6ec219d45959 100644
--- a/mysqlc/source/mysqlc_preparedstatement.cxx
+++ b/mysqlc/source/mysqlc_preparedstatement.cxx
@@ -204,7 +204,7 @@ sal_Bool SAL_CALL OPreparedStatement::execute()
MutexGuard aGuard(m_aMutex);
checkDisposed(OPreparedStatement::rBHelper.bDisposed);
- sal_Bool success = sal_False;
+ bool success = false;
try {
success = ((sql::PreparedStatement *)cppStatement)->execute()? sal_True:sal_False;
} catch (const sql::SQLException &e) {