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 /svx/source/form/fmvwimp.cxx | |
parent | 892cb24be673e8441a75bdde950c2087a24bdf74 (diff) |
Use IMPL_LINK_NOARG[_TYPED] where applicable
Change-Id: I70598072c1d492e360ef46dd7b5ef5a2fa4be495
Diffstat (limited to 'svx/source/form/fmvwimp.cxx')
-rw-r--r-- | svx/source/form/fmvwimp.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/form/fmvwimp.cxx b/svx/source/form/fmvwimp.cxx index a28064a46152..8044e8b6c6dc 100644 --- a/svx/source/form/fmvwimp.cxx +++ b/svx/source/form/fmvwimp.cxx @@ -608,7 +608,7 @@ void FmXFormView::displayAsyncErrorMessage( const SQLErrorEvent& _rEvent ) } -IMPL_LINK(FmXFormView, OnDelayedErrorMessage, void*, /*EMPTYTAG*/) +IMPL_LINK_NOARG(FmXFormView, OnDelayedErrorMessage) { m_nErrorMessageEvent = 0; displayException( m_aAsyncError ); @@ -657,7 +657,7 @@ void FmXFormView::resumeTabOrderUpdate() } -IMPL_LINK(FmXFormView, OnActivate, void*, /*EMPTYTAG*/) +IMPL_LINK_NOARG(FmXFormView, OnActivate) { m_nActivationEvent = 0; @@ -895,7 +895,7 @@ Reference< XFormController > FmXFormView::getFormController( const Reference< XF } -IMPL_LINK(FmXFormView, OnAutoFocus, void*, /*EMPTYTAG*/) +IMPL_LINK_NOARG(FmXFormView, OnAutoFocus) { m_nAutoFocusEvent = 0; @@ -1017,7 +1017,7 @@ void FmXFormView::breakCreateFormObject() m_xLastCreatedControlModel.clear(); } -IMPL_LINK( FmXFormView, OnStartControlWizard, void*, /**/ ) +IMPL_LINK_NOARG( FmXFormView, OnStartControlWizard ) { m_nControlWizardEvent = 0; OSL_PRECOND( m_xLastCreatedControlModel.is(), "FmXFormView::OnStartControlWizard: illegal call!" ); |