diff options
Diffstat (limited to 'include/svx/modctrl.hxx')
-rw-r--r-- | include/svx/modctrl.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/modctrl.hxx b/include/svx/modctrl.hxx index 1febdbd53467..bb0bdc39513c 100644 --- a/include/svx/modctrl.hxx +++ b/include/svx/modctrl.hxx @@ -23,7 +23,7 @@ #include <sfx2/stbitem.hxx> #include <svx/svxdllapi.h> -#include <boost/shared_ptr.hpp> +#include <memory> // Forward declarations class Timer; @@ -50,7 +50,7 @@ private: // Functions private: struct ImplData; - ::boost::shared_ptr<ImplData> mpImpl; + std::shared_ptr<ImplData> mxImpl; }; |