summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-05-22 21:39:10 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-05-22 21:39:10 +0200
commit3a9657b85d2ff5e365c96496ffa749efd4885501 (patch)
tree5ced5aadb2e286955b117fa6a6a197928d206dc6
parent63d108589724cdadfdcaf7c704382a8eb31ea8e3 (diff)
loplugin:staticmethods
Change-Id: Icd00538ececfb6ebff795f75ab17e50b536b67b2
-rw-r--r--include/sfx2/templatedlg.hxx2
-rw-r--r--sfx2/source/doc/templatedlg.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/sfx2/templatedlg.hxx b/include/sfx2/templatedlg.hxx
index fc425172f1a6..b4f9e29c34cd 100644
--- a/include/sfx2/templatedlg.hxx
+++ b/include/sfx2/templatedlg.hxx
@@ -69,7 +69,7 @@ private:
DECL_LINK_TYPED(MoveClickHdl, Button*, void);
DECL_LINK_TYPED(ExportClickHdl, Button*, void);
DECL_LINK_TYPED(ImportClickHdl, Button*, void);
- DECL_LINK_TYPED(LinkClickHdl, Button*, void);
+ DECL_STATIC_LINK_TYPED(SfxTemplateManagerDlg, LinkClickHdl, Button*, void);
DECL_LINK_TYPED(TVItemStateHdl, const ThumbnailViewItem*, void);
diff --git a/sfx2/source/doc/templatedlg.cxx b/sfx2/source/doc/templatedlg.cxx
index 14f89a71b614..848aeb8733a2 100644
--- a/sfx2/source/doc/templatedlg.cxx
+++ b/sfx2/source/doc/templatedlg.cxx
@@ -659,7 +659,7 @@ IMPL_LINK_NOARG_TYPED(SfxTemplateManagerDlg, ImportClickHdl, Button*, void)
mpCBFolder->SelectEntryPos(0);
}
-IMPL_LINK_NOARG_TYPED(SfxTemplateManagerDlg, LinkClickHdl, Button*, void)
+IMPL_STATIC_LINK_NOARG_TYPED(SfxTemplateManagerDlg, LinkClickHdl, Button*, void)
{
OnTemplateLink();
}