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 /sd/source/ui/inc/OutlineView.hxx | |
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 'sd/source/ui/inc/OutlineView.hxx')
-rw-r--r-- | sd/source/ui/inc/OutlineView.hxx | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/sd/source/ui/inc/OutlineView.hxx b/sd/source/ui/inc/OutlineView.hxx index af61c547f18d..ddbf768d8192 100644 --- a/sd/source/ui/inc/OutlineView.hxx +++ b/sd/source/ui/inc/OutlineView.hxx @@ -95,17 +95,17 @@ public: void Paint (const Rectangle& rRect, ::sd::Window* pWin); // Callbacks fuer LINKs - DECL_LINK_TYPED( ParagraphInsertedHdl, ::Outliner *, void ); - DECL_LINK_TYPED( ParagraphRemovingHdl, ::Outliner *, void ); - DECL_LINK_TYPED( DepthChangedHdl, ::Outliner *, void ); - DECL_LINK_TYPED( StatusEventHdl, EditStatus&, void ); - DECL_LINK_TYPED( BeginMovingHdl, ::Outliner *, void ); - DECL_LINK_TYPED( EndMovingHdl, ::Outliner *, void ); - DECL_LINK_TYPED( RemovingPagesHdl, OutlinerView *, bool ); - DECL_LINK_TYPED( IndentingPagesHdl, OutlinerView *, bool ); - DECL_LINK_TYPED( BeginDropHdl, EditView*, void ); - DECL_LINK_TYPED( EndDropHdl, EditView*, void ); - DECL_LINK_TYPED( PaintingFirstLineHdl, PaintFirstLineInfo*, void ); + DECL_LINK( ParagraphInsertedHdl, ::Outliner *, void ); + DECL_LINK( ParagraphRemovingHdl, ::Outliner *, void ); + DECL_LINK( DepthChangedHdl, ::Outliner *, void ); + DECL_LINK( StatusEventHdl, EditStatus&, void ); + DECL_LINK( BeginMovingHdl, ::Outliner *, void ); + DECL_LINK( EndMovingHdl, ::Outliner *, void ); + DECL_LINK( RemovingPagesHdl, OutlinerView *, bool ); + DECL_LINK( IndentingPagesHdl, OutlinerView *, bool ); + DECL_LINK( BeginDropHdl, EditView*, void ); + DECL_LINK( EndDropHdl, EditView*, void ); + DECL_LINK( PaintingFirstLineHdl, PaintFirstLineInfo*, void ); sal_uLong GetPaperWidth() { return mnPaperWidth;} @@ -198,9 +198,9 @@ private: /** this link is called from the vcl application when the stylesettings change. Its only purpose is to call onUpdateStyleSettings() then. */ - DECL_LINK_TYPED( AppEventListenerHdl, VclSimpleEvent&, void ); + DECL_LINK( AppEventListenerHdl, VclSimpleEvent&, void ); - DECL_LINK_TYPED(EventMultiplexerListener, sd::tools::EventMultiplexerEvent&, void); + DECL_LINK(EventMultiplexerListener, sd::tools::EventMultiplexerEvent&, void); /** holds a model guard during drag and drop between BeginMovingHdl and EndMovingHdl */ std::unique_ptr< OutlineViewModelChangeGuard > maDragAndDropModelGuard; |