diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-10-05 07:56:12 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-10-05 07:56:12 +0200 |
commit | 106ea87205cfba1bc39dc99ad8c3ee5f8fe350fb (patch) | |
tree | e55ab4706654d10a5f9b75acfdecec72fda804c3 /include/dbaccess | |
parent | 36efdec23b86fe28c79fe672bb6862fb57b6e09a (diff) |
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
Diffstat (limited to 'include/dbaccess')
-rw-r--r-- | include/dbaccess/AsynchronousLink.hxx | 2 | ||||
-rw-r--r-- | include/dbaccess/ToolBoxHelper.hxx | 4 | ||||
-rw-r--r-- | include/dbaccess/genericcontroller.hxx | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/include/dbaccess/AsynchronousLink.hxx b/include/dbaccess/AsynchronousLink.hxx index 8adefd1d45dc..1f19469c8504 100644 --- a/include/dbaccess/AsynchronousLink.hxx +++ b/include/dbaccess/AsynchronousLink.hxx @@ -58,7 +58,7 @@ namespace dbaui void CancelCall(); protected: - DECL_LINK_TYPED(OnAsyncCall, void*, void); + DECL_LINK(OnAsyncCall, void*, void); }; } #endif // INCLUDED_DBACCESS_ASYNCRONOUSLINK_HXX diff --git a/include/dbaccess/ToolBoxHelper.hxx b/include/dbaccess/ToolBoxHelper.hxx index 7386bf35cbc3..82f97a1c665d 100644 --- a/include/dbaccess/ToolBoxHelper.hxx +++ b/include/dbaccess/ToolBoxHelper.hxx @@ -69,8 +69,8 @@ namespace dbaui void checkImageList(); protected: - DECL_LINK_TYPED(ConfigOptionsChanged, LinkParamNone*, void); - DECL_LINK_TYPED(SettingsChanged, VclSimpleEvent&, void ); + DECL_LINK(ConfigOptionsChanged, LinkParamNone*, void); + DECL_LINK(SettingsChanged, VclSimpleEvent&, void ); }; } #endif // INCLUDED_DBACCESS_TOOLBOXHELPER_HXX diff --git a/include/dbaccess/genericcontroller.hxx b/include/dbaccess/genericcontroller.hxx index 40b9086a144d..0b1501d6a99c 100644 --- a/include/dbaccess/genericcontroller.hxx +++ b/include/dbaccess/genericcontroller.hxx @@ -422,8 +422,8 @@ namespace dbaui void ImplBroadcastFeatureState(const OUString& _rFeature, const css::uno::Reference< css::frame::XStatusListener > & xListener, bool _bIgnoreCache); // link methods - DECL_LINK_TYPED(OnAsyncInvalidateAll, void*, void); - DECL_LINK_TYPED(OnAsyncCloseTask, void*, void); + DECL_LINK(OnAsyncInvalidateAll, void*, void); + DECL_LINK(OnAsyncCloseTask, void*, void); public: const css::uno::Reference< css::uno::XComponentContext >& getORB() const { return m_xContext; } |