diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-31 16:46:08 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-01 07:38:08 +0200 |
commit | 3194d22a24f102d2a8a617f88b162545a0395447 (patch) | |
tree | 3a4f20580f424ff774fc810f154e7296ffced21c /dbaccess/source/ui/app/AppController.cxx | |
parent | 2c7bef7b8d71a7ce435695ef6d10f443e7bf26f0 (diff) |
connectivity: sal_Bool->bool and fix method name
Convert method name
getBoleanComparisonPredicate
to
getBooleanComparisonPredicate
Change-Id: I00c726b1fecd8352dc49f2af98c3ae3c799ef424
Diffstat (limited to 'dbaccess/source/ui/app/AppController.cxx')
-rw-r--r-- | dbaccess/source/ui/app/AppController.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/app/AppController.cxx b/dbaccess/source/ui/app/AppController.cxx index 2fe85a47ad7d..8fde9e336416 100644 --- a/dbaccess/source/ui/app/AppController.cxx +++ b/dbaccess/source/ui/app/AppController.cxx @@ -2152,7 +2152,7 @@ void OApplicationController::renameEntry() OUString sCatalog = aDialog->getCatalog(); OUString sSchema = aDialog->getSchema(); - sNewName = ::dbtools::composeTableName( m_xMetaData, sCatalog, sSchema, sName, sal_False, ::dbtools::eInDataManipulation ); + sNewName = ::dbtools::composeTableName( m_xMetaData, sCatalog, sSchema, sName, false, ::dbtools::eInDataManipulation ); } else sNewName = aDialog->getName(); |