summaryrefslogtreecommitdiff
path: root/sw/source/ui/config
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-09 21:31:11 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-10 11:25:46 +0200
commitb53c2cd3855f6ac91157c615a1b4f168b2aaf244 (patch)
tree367377fd04a35069326084b00a5afa415c4cc1db /sw/source/ui/config
parent31a92c1529260c42069563cb3661527756ce80b6 (diff)
Replace IMPL_STATIC_LINK[_TYPED] with more useful variants
Change-Id: I9764e8860ee66cc94456eae879a9fc90d0ad850d
Diffstat (limited to 'sw/source/ui/config')
-rw-r--r--sw/source/ui/config/mailconfigpage.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/ui/config/mailconfigpage.cxx b/sw/source/ui/config/mailconfigpage.cxx
index 578909554f0b..da580302fe18 100644
--- a/sw/source/ui/config/mailconfigpage.cxx
+++ b/sw/source/ui/config/mailconfigpage.cxx
@@ -68,7 +68,7 @@ class SwTestAccountSettingsDialog : public SfxModalDialog
void Test();
DECL_LINK(StopHdl, void *);
- DECL_STATIC_LINK(SwTestAccountSettingsDialog, TestHdl, void*);
+ DECL_LINK(TestHdl, void*);
public:
SwTestAccountSettingsDialog(SwMailConfigPage* pParent);
virtual ~SwTestAccountSettingsDialog();
@@ -282,11 +282,11 @@ IMPL_LINK_NOARG(SwTestAccountSettingsDialog, StopHdl)
return 0;
}
-IMPL_STATIC_LINK(SwTestAccountSettingsDialog, TestHdl, void*, EMPTYARG)
+IMPL_LINK_NOARG(SwTestAccountSettingsDialog, TestHdl)
{
- pThis->EnterWait();
- pThis->Test();
- pThis->LeaveWait();
+ EnterWait();
+ Test();
+ LeaveWait();
return 0;
}