summaryrefslogtreecommitdiff
path: root/svx/source/gallery2/galbrws1.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-08-03 12:21:19 +0200
committerMichael Stahl <mstahl@redhat.com>2015-08-03 14:47:44 +0200
commit81c6ae873d0b624f8f5113253180e796bdafd8d8 (patch)
tree4835eb50d149f7ad5222cfd13eb77a7a07991aec /svx/source/gallery2/galbrws1.hxx
parent300b4fa81a924a4a30fc231574b469db82ea42e6 (diff)
svx: replace boost::function with std::function
Change-Id: I52def97b8dfa9e4dba5d47937de45e587a23b4de
Diffstat (limited to 'svx/source/gallery2/galbrws1.hxx')
-rw-r--r--svx/source/gallery2/galbrws1.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/gallery2/galbrws1.hxx b/svx/source/gallery2/galbrws1.hxx
index 4c5bc4413b61..2a35853696ac 100644
--- a/svx/source/gallery2/galbrws1.hxx
+++ b/svx/source/gallery2/galbrws1.hxx
@@ -26,7 +26,7 @@
#include <svl/lstner.hxx>
#include <vector>
-#include <boost/function.hpp>
+#include <functional>
class GalleryBrowser1;
@@ -91,8 +91,8 @@ private:
Image aImgReadOnly;
Image aImgImported;
- ::boost::function<sal_Bool(const KeyEvent&,Window*)> maKeyInputHandler;
- ::boost::function<void()> maThemeSlectionHandler;
+ ::std::function<sal_Bool (const KeyEvent&,Window*)> maKeyInputHandler;
+ ::std::function<void ()> maThemeSlectionHandler;
void ImplAdjustControls();
sal_uIntPtr ImplInsertThemeEntry( const GalleryThemeEntry* pEntry );
@@ -122,8 +122,8 @@ public:
GalleryBrowser1(
vcl::Window* pParent,
Gallery* pGallery,
- const ::boost::function<sal_Bool(const KeyEvent&,Window*)>& rKeyInputHandler,
- const ::boost::function<void()>& rThemeSlectionHandler);
+ const ::std::function<sal_Bool (const KeyEvent&,Window*)>& rKeyInputHandler,
+ const ::std::function<void ()>& rThemeSlectionHandler);
virtual ~GalleryBrowser1();
virtual void dispose() SAL_OVERRIDE;