summaryrefslogtreecommitdiff
path: root/include/sfx2
diff options
context:
space:
mode:
Diffstat (limited to 'include/sfx2')
-rw-r--r--include/sfx2/mnumgr.hxx2
-rw-r--r--include/sfx2/sidebar/SidebarController.hxx2
-rw-r--r--include/sfx2/templatedlg.hxx8
3 files changed, 6 insertions, 6 deletions
diff --git a/include/sfx2/mnumgr.hxx b/include/sfx2/mnumgr.hxx
index 786b477b6cc1..ab0292ccf00e 100644
--- a/include/sfx2/mnumgr.hxx
+++ b/include/sfx2/mnumgr.hxx
@@ -57,7 +57,7 @@ protected:
~SfxMenuManager();
public:
- DECL_LINK( Select, Menu* );
+ DECL_LINK_TYPED( Select, Menu*, bool );
SfxVirtualMenu* GetMenu() const
{ return pMenu; }
diff --git a/include/sfx2/sidebar/SidebarController.hxx b/include/sfx2/sidebar/SidebarController.hxx
index d3aabbc8c2ba..bf363edf415e 100644
--- a/include/sfx2/sidebar/SidebarController.hxx
+++ b/include/sfx2/sidebar/SidebarController.hxx
@@ -231,7 +231,7 @@ private:
const ::std::vector<TabBar::DeckMenuData>& rMenuData) const;
::boost::shared_ptr<PopupMenu> CreatePopupMenu (
const ::std::vector<TabBar::DeckMenuData>& rMenuData) const;
- DECL_LINK(OnMenuItemSelected, Menu*);
+ DECL_LINK_TYPED(OnMenuItemSelected, Menu*, bool);
void BroadcastPropertyChange();
/** The close of the deck changes the width of the child window.
diff --git a/include/sfx2/templatedlg.hxx b/include/sfx2/templatedlg.hxx
index ceb96c211106..e2192cff44ce 100644
--- a/include/sfx2/templatedlg.hxx
+++ b/include/sfx2/templatedlg.hxx
@@ -72,10 +72,10 @@ private:
DECL_LINK_TYPED(TVItemStateHdl, const ThumbnailViewItem*, void);
- DECL_LINK(MenuSelectHdl, Menu*);
- DECL_LINK(MoveMenuSelectHdl, Menu*);
- DECL_LINK(RepositoryMenuSelectHdl, Menu*);
- DECL_LINK(DefaultTemplateMenuSelectHdl, Menu*);
+ DECL_LINK_TYPED(MenuSelectHdl, Menu*, bool);
+ DECL_LINK_TYPED(MoveMenuSelectHdl, Menu*, bool);
+ DECL_LINK_TYPED(RepositoryMenuSelectHdl, Menu*, bool);
+ DECL_LINK_TYPED(DefaultTemplateMenuSelectHdl, Menu*, bool);
DECL_LINK_TYPED(OpenRegionHdl, void*, void);
DECL_LINK_TYPED(OpenTemplateHdl, ThumbnailViewItem*, void);