summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorAlbert Thuswaldner <albert.thuswaldner@gmail.com>2015-10-05 21:02:35 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-09 07:20:14 +0000
commitd5dc2a2a726dd151fb30fae25478511dce929dfa (patch)
treea4c1d4f9a8da04f2473bcb23d1ea44eb83c08a60 /sc
parent32b2668f2fe9d8d4e5afc0c32f05c182f4fb006c (diff)
tdf#93243 replace boost::bind with C++11 lambdas Cell...PropertyPanel.cxx
Change-Id: Id2d892742cd69da2deba51775bd04ecbec32f436 Reviewed-on: https://gerrit.libreoffice.org/19170 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/sidebar/CellAppearancePropertyPanel.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/sidebar/CellAppearancePropertyPanel.cxx b/sc/source/ui/sidebar/CellAppearancePropertyPanel.cxx
index e3b77fdb8fc4..4ae02d3a65de 100644
--- a/sc/source/ui/sidebar/CellAppearancePropertyPanel.cxx
+++ b/sc/source/ui/sidebar/CellAppearancePropertyPanel.cxx
@@ -195,7 +195,7 @@ IMPL_LINK_TYPED(CellAppearancePropertyPanel, TbxCellBorderSelectHdl, ToolBox*, p
mpCellBorderStylePopup.reset(
new CellBorderStylePopup(
this,
- ::boost::bind(&CellAppearancePropertyPanel::CreateCellBorderStylePopupControl, this, _1)));
+ [this] (svx::sidebar::PopupContainer* pParent) { return this->CreateCellBorderStylePopupControl(pParent); } ));
}
if(mpCellBorderStylePopup.get())
@@ -217,7 +217,7 @@ IMPL_LINK_TYPED(CellAppearancePropertyPanel, TbxLineStyleSelectHdl, ToolBox*, pT
mpCellLineStylePopup.reset(
new CellLineStylePopup(
this,
- ::boost::bind(&CellAppearancePropertyPanel::CreateCellLineStylePopupControl, this, _1)));
+ [this] (svx::sidebar::PopupContainer* pParent) { return this->CreateCellBorderStylePopupControl(pParent); } ));
}
if(mpCellLineStylePopup.get())