diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-18 14:54:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-19 09:21:24 +0200 |
commit | 16752a8a773cf8096e28628237238a562016c4e5 (patch) | |
tree | d871056db97706bdb66dfca046aeb68500c5e565 /dbaccess | |
parent | be878d7cc54cbe3dc1de410e9ff760fe353ce56a (diff) |
sfx2: sal_Bool->bool
Change-Id: Ief810c49b821e2e60ee2c8b14187dd8d7d81c461
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/dlg/adminpages.cxx | 4 | ||||
-rw-r--r-- | dbaccess/source/ui/dlg/dbadmin.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/dlg/adminpages.cxx b/dbaccess/source/ui/dlg/adminpages.cxx index 36b4b659b23f..57e817419fa0 100644 --- a/dbaccess/source/ui/dlg/adminpages.cxx +++ b/dbaccess/source/ui/dlg/adminpages.cxx @@ -66,7 +66,7 @@ namespace dbaui ,m_pFT_HeaderText(NULL) { - SetExchangeSupport(sal_True); + SetExchangeSupport(true); } OGenericAdministrationPage::OGenericAdministrationPage(Window* _pParent, const OString& _rId, const OUString& _rUIXMLDescription, const SfxItemSet& _rAttrSet) @@ -77,7 +77,7 @@ namespace dbaui ,m_pFT_HeaderText(NULL) { - SetExchangeSupport(sal_True); + SetExchangeSupport(true); } OGenericAdministrationPage::~OGenericAdministrationPage() diff --git a/dbaccess/source/ui/dlg/dbadmin.cxx b/dbaccess/source/ui/dlg/dbadmin.cxx index cd42dca4aa2f..bfd15f183b28 100644 --- a/dbaccess/source/ui/dlg/dbadmin.cxx +++ b/dbaccess/source/ui/dlg/dbadmin.cxx @@ -155,7 +155,7 @@ void ODbAdminDialog::impl_selectDataSource(const ::com::sun::star::uno::Any& _aD case ::dbaccess::DST_USERDEFINE10: { OUString aTitle(ModuleRes(STR_PAGETITLE_ADVANCED)); - AddTabPage(PAGE_USERDRIVER, aTitle, ODriversSettings::CreateUser, 0, sal_False, 1); + AddTabPage(PAGE_USERDRIVER, aTitle, ODriversSettings::CreateUser, 0, false, 1); m_aCurrentDetailPages.push(PAGE_USERDRIVER); } break; |