summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-01 08:38:29 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-01 08:38:29 +0200
commitcc7ae7776402ed967463cdf8f515d5236edffbad (patch)
treeea256348e44bde04f0f920785d42681c58f22803 /dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx
parent28c8a529510133466f2b361020678cb3a479d78b (diff)
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: I2d1b59cf13c3944b24ad54dc63e20b83a9c8a015
Diffstat (limited to 'dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx')
-rw-r--r--dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx b/dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx
index a6db1563e1d3..15dcaa292158 100644
--- a/dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx
+++ b/dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx
@@ -50,10 +50,10 @@ ODBTypeWizDialogSetup::ODBTypeWizDialogSetup(const Reference< XComponentContext
,m_bStartTableWizard(false)
{
registerProperty(OUString("OpenDatabase"), 3, PropertyAttribute::TRANSIENT,
- &m_bOpenDatabase, getBooleanCppuType());
+ &m_bOpenDatabase, cppu::UnoType<bool>::get());
registerProperty(OUString("StartTableWizard"), 4, PropertyAttribute::TRANSIENT,
- &m_bStartTableWizard, getBooleanCppuType());
+ &m_bStartTableWizard, cppu::UnoType<bool>::get());
}
Sequence<sal_Int8> SAL_CALL ODBTypeWizDialogSetup::getImplementationId( ) throw(RuntimeException, std::exception)