summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/misc/WCPage.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-08 17:04:25 +0200
committerNoel Grandin <noel@peralex.com>2016-03-09 10:07:47 +0200
commit1b1080fe8a2368410982c5b11575de183fb1bfa9 (patch)
treeb36be6e160d6c647a9769bae5058e291822f4b33 /dbaccess/source/ui/misc/WCPage.cxx
parented4375c6d834e68a3f7c7dfb39a6ae0755da4785 (diff)
loplugin:constantparam in dbaccess
Change-Id: I44b5a586a1b0da47e032dff097ebf545f5fe76fc
Diffstat (limited to 'dbaccess/source/ui/misc/WCPage.cxx')
-rw-r--r--dbaccess/source/ui/misc/WCPage.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/misc/WCPage.cxx b/dbaccess/source/ui/misc/WCPage.cxx
index 001956b7a123..c866e3ec51db 100644
--- a/dbaccess/source/ui/misc/WCPage.cxx
+++ b/dbaccess/source/ui/misc/WCPage.cxx
@@ -131,7 +131,7 @@ IMPL_LINK_NOARG_TYPED( OCopyTable, AppendDataClickHdl, Button*, void )
void OCopyTable::SetAppendDataRadio()
{
- m_pParent->EnableButton(OCopyTableWizard::WIZARD_NEXT,true);
+ m_pParent->EnableNextButton(true);
m_pFT_KeyName->Enable(false);
m_pCB_PrimaryColumn->Enable(false);
m_pEdKeyName->Enable(false);
@@ -140,7 +140,7 @@ void OCopyTable::SetAppendDataRadio()
IMPL_LINK_TYPED( OCopyTable, RadioChangeHdl, Button*, pButton, void )
{
- m_pParent->EnableButton(OCopyTableWizard::WIZARD_NEXT,pButton != m_pRB_View);
+ m_pParent->EnableNextButton(pButton != m_pRB_View);
bool bKey = m_bPKeyAllowed && pButton != m_pRB_View;
m_pFT_KeyName->Enable(bKey && m_pCB_PrimaryColumn->IsChecked());
m_pEdKeyName->Enable(bKey && m_pCB_PrimaryColumn->IsChecked());