diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-17 13:43:17 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-17 16:24:05 +0000 |
commit | 3744d8506ef231d642785faf6da4926cea64c6a0 (patch) | |
tree | 2d57ca5be9eda54aafb5065d7010bb50a37053ac /include/svx/selectioncontroller.hxx | |
parent | 7a17c038a6f4c433a69c6c1ed04aca2e5c929027 (diff) |
boost->std
Change-Id: I8371b942d915f777a29ca01cd0aed674db0ca853
Diffstat (limited to 'include/svx/selectioncontroller.hxx')
-rw-r--r-- | include/svx/selectioncontroller.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/svx/selectioncontroller.hxx b/include/svx/selectioncontroller.hxx index 98532141ae87..6c15e286eca2 100644 --- a/include/svx/selectioncontroller.hxx +++ b/include/svx/selectioncontroller.hxx @@ -21,10 +21,8 @@ #define INCLUDED_SVX_SELECTIONCONTROLLER_HXX #include <svx/svxdllapi.h> - -#include <boost/shared_ptr.hpp> - #include <cppuhelper/weak.hxx> +#include <memory> class KeyEvent; class MouseEvent; @@ -63,7 +61,7 @@ public: virtual bool PasteObjModel( const SdrModel& rModel ); /** returns a format paint brush set from the current selection */ - virtual bool TakeFormatPaintBrush( boost::shared_ptr< SfxItemSet >& rFormatSet ); + virtual bool TakeFormatPaintBrush( std::shared_ptr< SfxItemSet >& rFormatSet ); /** applies a format paint brush set from the current selection. if bNoCharacterFormats is true, no character attributes are changed. |