diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 09:35:25 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 09:35:25 +0100 |
commit | add39c3cc170004915eccc17e3101fe1b25556b7 (patch) | |
tree | 8df1f45fb7e007c554682969da54eb50218b2403 /dbaccess/source/ui/uno | |
parent | 5de01333b62544c36702dab9e44764272794bc7f (diff) |
loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)
Change-Id: I14bdbad2469d05eb25514d7ab995acb8c6ef7bd1
Diffstat (limited to 'dbaccess/source/ui/uno')
-rw-r--r-- | dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx b/dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx index c575b4981edf..d4547ba8cb97 100644 --- a/dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx +++ b/dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx @@ -49,10 +49,10 @@ ODBTypeWizDialogSetup::ODBTypeWizDialogSetup(const Reference< XComponentContext ,m_bOpenDatabase(true) ,m_bStartTableWizard(false) { - registerProperty(OUString("OpenDatabase"), 3, PropertyAttribute::TRANSIENT, + registerProperty("OpenDatabase", 3, PropertyAttribute::TRANSIENT, &m_bOpenDatabase, cppu::UnoType<bool>::get()); - registerProperty(OUString("StartTableWizard"), 4, PropertyAttribute::TRANSIENT, + registerProperty("StartTableWizard", 4, PropertyAttribute::TRANSIENT, &m_bStartTableWizard, cppu::UnoType<bool>::get()); } |