diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-10 11:24:40 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-10 12:06:16 +0200 |
commit | 6dc42c82bade7ed1cf2cf142ab9137ad8f98e188 (patch) | |
tree | 489b02b29518b64bd0476da720045a6aa1610969 /dbaccess/source/ui/dlg/adtabdlg.cxx | |
parent | 892cb24be673e8441a75bdde950c2087a24bdf74 (diff) |
Use IMPL_LINK_NOARG[_TYPED] where applicable
Change-Id: I70598072c1d492e360ef46dd7b5ef5a2fa4be495
Diffstat (limited to 'dbaccess/source/ui/dlg/adtabdlg.cxx')
-rw-r--r-- | dbaccess/source/ui/dlg/adtabdlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/dlg/adtabdlg.cxx b/dbaccess/source/ui/dlg/adtabdlg.cxx index 74fbdda370d1..3f541a1fd168 100644 --- a/dbaccess/source/ui/dlg/adtabdlg.cxx +++ b/dbaccess/source/ui/dlg/adtabdlg.cxx @@ -423,7 +423,7 @@ IMPL_LINK( OAddTableDlg, AddClickHdl, Button*, /*pButton*/ ) return 0; } -IMPL_LINK( OAddTableDlg, TableListDoubleClickHdl, void*, /*EMPTY_ARG*/ ) +IMPL_LINK_NOARG( OAddTableDlg, TableListDoubleClickHdl ) { if ( impl_isAddAllowed() ) { @@ -436,7 +436,7 @@ IMPL_LINK( OAddTableDlg, TableListDoubleClickHdl, void*, /*EMPTY_ARG*/ ) return 0L; // not handled } -IMPL_LINK( OAddTableDlg, TableListSelectHdl, void*, /*EMPTY_ARG*/ ) +IMPL_LINK_NOARG( OAddTableDlg, TableListSelectHdl ) { m_pAddButton->Enable( m_xCurrentList->isLeafSelected() ); return 0; @@ -447,7 +447,7 @@ IMPL_LINK( OAddTableDlg, CloseClickHdl, Button*, /*pButton*/ ) return int(Close()); } -IMPL_LINK( OAddTableDlg, OnTypeSelected, void*, /*EMPTY_ARG*/ ) +IMPL_LINK_NOARG( OAddTableDlg, OnTypeSelected ) { if ( m_pCaseTables->IsChecked() ) impl_switchTo( Tables ); |