From 106ea87205cfba1bc39dc99ad8c3ee5f8fe350fb Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 5 Oct 2016 07:56:12 +0200 Subject: Remove _TYPED suffix from tools/link.hxx macros ...which was introduced with 3ead3ad52f9bb2f9d1d6cf8dfc73a0a25e6778ed "Gradually typed Link" to distinguish the new, typed versions from the old, untyped ones, but is no longer necessary since 382eb1a23c390154619c385414bdbe6f6e461173 "remove untyped Link<>" removed the old versions. Change-Id: I494025df486a16a45861fcd8192dfe0275b1103c --- sfx2/inc/inettbc.hxx | 6 +++--- sfx2/inc/srchdlg.hxx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'sfx2/inc') diff --git a/sfx2/inc/inettbc.hxx b/sfx2/inc/inettbc.hxx index d96b33e882d5..71c3e5b1b67b 100644 --- a/sfx2/inc/inettbc.hxx +++ b/sfx2/inc/inettbc.hxx @@ -34,8 +34,8 @@ private: SvtURLBox* GetURLBox() const; void OpenURL( const OUString& rName, bool bNew ) const; - DECL_LINK_TYPED( OpenHdl, SvtURLBox*, void ); - DECL_LINK_TYPED( SelectHdl, ComboBox&, void ); + DECL_LINK( OpenHdl, SvtURLBox*, void ); + DECL_LINK( SelectHdl, ComboBox&, void ); struct ExecuteInfo { @@ -44,7 +44,7 @@ private: css::uno::Sequence< css::beans::PropertyValue > aArgs; }; - DECL_STATIC_LINK_TYPED( SfxURLToolBoxControl_Impl, ExecuteHdl_Impl, void*, void ); + DECL_STATIC_LINK( SfxURLToolBoxControl_Impl, ExecuteHdl_Impl, void*, void ); public: diff --git a/sfx2/inc/srchdlg.hxx b/sfx2/inc/srchdlg.hxx index 5152b8e2d952..0210ed23436b 100644 --- a/sfx2/inc/srchdlg.hxx +++ b/sfx2/inc/srchdlg.hxx @@ -53,7 +53,7 @@ private: void LoadConfig(); void SaveConfig(); - DECL_LINK_TYPED(FindHdl, Button *, void); + DECL_LINK(FindHdl, Button *, void); public: SearchDialog( vcl::Window* pWindow, const OUString& rConfigName ); -- cgit