summaryrefslogtreecommitdiff
path: root/svx/source/sidebar/tools
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-07-31 18:30:48 +0200
committerMichael Stahl <mstahl@redhat.com>2015-07-31 21:24:25 +0200
commit69885050705d65803b0176beb7ffc7938d527396 (patch)
tree18554fc52bc73edf96bbfb35893e09386564b0bd /svx/source/sidebar/tools
parent2a62966d8947829d00702455977026369082007a (diff)
svx: replace boost::function with std::function
Change-Id: I7d6d01775600fdbd64b0b5a249d88acdb89f6591
Diffstat (limited to 'svx/source/sidebar/tools')
-rw-r--r--svx/source/sidebar/tools/Popup.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/sidebar/tools/Popup.cxx b/svx/source/sidebar/tools/Popup.cxx
index 3bd6246a5fcf..8c0e855f5133 100644
--- a/svx/source/sidebar/tools/Popup.cxx
+++ b/svx/source/sidebar/tools/Popup.cxx
@@ -27,7 +27,7 @@ namespace svx { namespace sidebar {
Popup::Popup (
vcl::Window* pParent,
- const ::boost::function<PopupControl*(PopupContainer*)>& rControlCreator,
+ const ::std::function<PopupControl* (PopupContainer*)>& rControlCreator,
const ::rtl::OUString& rsAccessibleName)
: mxControl(),
mpParent(pParent),
@@ -89,7 +89,7 @@ void Popup::Hide()
mxContainer->EndPopupMode();
}
-void Popup::SetPopupModeEndHandler (const ::boost::function<void()>& rCallback)
+void Popup::SetPopupModeEndHandler (const ::std::function<void ()>& rCallback)
{
maPopupModeEndCallback = rCallback;
if (mxContainer)