Kaydet (Commit) d5dc2a2a authored tarafından Albert Thuswaldner's avatar Albert Thuswaldner Kaydeden (comit) Noel Grandin

tdf#93243 replace boost::bind with C++11 lambdas Cell...PropertyPanel.cxx

Change-Id: Id2d892742cd69da2deba51775bd04ecbec32f436
Reviewed-on: https://gerrit.libreoffice.org/19170Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 32b2668f
...@@ -195,7 +195,7 @@ IMPL_LINK_TYPED(CellAppearancePropertyPanel, TbxCellBorderSelectHdl, ToolBox*, p ...@@ -195,7 +195,7 @@ IMPL_LINK_TYPED(CellAppearancePropertyPanel, TbxCellBorderSelectHdl, ToolBox*, p
mpCellBorderStylePopup.reset( mpCellBorderStylePopup.reset(
new CellBorderStylePopup( new CellBorderStylePopup(
this, this,
::boost::bind(&CellAppearancePropertyPanel::CreateCellBorderStylePopupControl, this, _1))); [this] (svx::sidebar::PopupContainer* pParent) { return this->CreateCellBorderStylePopupControl(pParent); } ));
} }
if(mpCellBorderStylePopup.get()) if(mpCellBorderStylePopup.get())
...@@ -217,7 +217,7 @@ IMPL_LINK_TYPED(CellAppearancePropertyPanel, TbxLineStyleSelectHdl, ToolBox*, pT ...@@ -217,7 +217,7 @@ IMPL_LINK_TYPED(CellAppearancePropertyPanel, TbxLineStyleSelectHdl, ToolBox*, pT
mpCellLineStylePopup.reset( mpCellLineStylePopup.reset(
new CellLineStylePopup( new CellLineStylePopup(
this, this,
::boost::bind(&CellAppearancePropertyPanel::CreateCellLineStylePopupControl, this, _1))); [this] (svx::sidebar::PopupContainer* pParent) { return this->CreateCellBorderStylePopupControl(pParent); } ));
} }
if(mpCellLineStylePopup.get()) if(mpCellLineStylePopup.get())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment