diff options
-rw-r--r-- | include/sfx2/templatedlg.hxx | 2 | ||||
-rw-r--r-- | sfx2/source/doc/templatedlg.cxx | 2 |
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(); } |