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 /forms/source | |
parent | 892cb24be673e8441a75bdde950c2087a24bdf74 (diff) |
Use IMPL_LINK_NOARG[_TYPED] where applicable
Change-Id: I70598072c1d492e360ef46dd7b5ef5a2fa4be495
Diffstat (limited to 'forms/source')
-rw-r--r-- | forms/source/richtext/richtextimplcontrol.cxx | 2 | ||||
-rw-r--r-- | forms/source/richtext/richtextmodel.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/richtext/richtextimplcontrol.cxx b/forms/source/richtext/richtextimplcontrol.cxx index 50c483b97151..0d67724aa65f 100644 --- a/forms/source/richtext/richtextimplcontrol.cxx +++ b/forms/source/richtext/richtextimplcontrol.cxx @@ -311,7 +311,7 @@ namespace frm } - IMPL_LINK( RichTextControlImpl, OnInvalidateAllAttributes, void*, /*_pNotInterestedIn*/ ) + IMPL_LINK_NOARG( RichTextControlImpl, OnInvalidateAllAttributes ) { updateAllAttributes(); return 0L; diff --git a/forms/source/richtext/richtextmodel.cxx b/forms/source/richtext/richtextmodel.cxx index 313c28ff20cd..417ac6d30da4 100644 --- a/forms/source/richtext/richtextmodel.cxx +++ b/forms/source/richtext/richtextmodel.cxx @@ -549,7 +549,7 @@ namespace frm } - IMPL_LINK( ORichTextModel, OnEngineContentModified, void*, /*_pNotInterestedIn*/ ) + IMPL_LINK_NOARG( ORichTextModel, OnEngineContentModified ) { if ( !m_bSettingEngineText ) { |