summaryrefslogtreecommitdiff
path: root/cui/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-10 11:24:40 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-10 12:06:16 +0200
commit6dc42c82bade7ed1cf2cf142ab9137ad8f98e188 (patch)
tree489b02b29518b64bd0476da720045a6aa1610969 /cui/source
parent892cb24be673e8441a75bdde950c2087a24bdf74 (diff)
Use IMPL_LINK_NOARG[_TYPED] where applicable
Change-Id: I70598072c1d492e360ef46dd7b5ef5a2fa4be495
Diffstat (limited to 'cui/source')
-rw-r--r--cui/source/options/optgdlg.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx
index c4f84c496e28..fa0bb0e98676 100644
--- a/cui/source/options/optgdlg.cxx
+++ b/cui/source/options/optgdlg.cxx
@@ -735,10 +735,8 @@ void OfaViewTabPage::dispose()
}
#if defined( UNX )
-IMPL_LINK( OfaViewTabPage, OnAntialiasingToggled, void*, NOTINTERESTEDIN )
+IMPL_LINK_NOARG( OfaViewTabPage, OnAntialiasingToggled )
{
- (void)NOTINTERESTEDIN;
-
bool bAAEnabled = m_pFontAntiAliasing->IsChecked();
m_pAAPointLimitLabel->Enable( bAAEnabled );
@@ -749,9 +747,8 @@ IMPL_LINK( OfaViewTabPage, OnAntialiasingToggled, void*, NOTINTERESTEDIN )
#endif
// #i97672#
-IMPL_LINK( OfaViewTabPage, OnSelectionToggled, void*, NOTINTERESTEDIN )
+IMPL_LINK_NOARG( OfaViewTabPage, OnSelectionToggled )
{
- (void)NOTINTERESTEDIN;
const bool bSelectionEnabled(m_pSelectionCB->IsChecked());
m_pSelectionMF->Enable(bSelectionEnabled);
return 0;