summaryrefslogtreecommitdiff
path: root/include/svx/dialcontrol.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-02-15 20:41:33 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-02-16 12:54:44 +0000
commita1ceacc17e3f30d5e9c06b3218ad8ec26ca2f1b9 (patch)
tree56a29f66f75f326a0a677ab1697ce28f1bc9fcbf /include/svx/dialcontrol.hxx
parent18f41dfaf19d656d290c47d196ef2702e169a522 (diff)
boost::foo_ptr->std::foo_ptr
Change-Id: I9219619b538b6530a89f5932ac51eb3b62eb396a
Diffstat (limited to 'include/svx/dialcontrol.hxx')
-rw-r--r--include/svx/dialcontrol.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/svx/dialcontrol.hxx b/include/svx/dialcontrol.hxx
index b7daff733d68..38b60e3f6f4e 100644
--- a/include/svx/dialcontrol.hxx
+++ b/include/svx/dialcontrol.hxx
@@ -25,8 +25,6 @@
#include <sfx2/itemconnect.hxx>
#include <svx/svxdllapi.h>
-#include <boost/scoped_ptr.hpp>
-
class NumericField;
namespace svx {
@@ -128,9 +126,9 @@ public:
protected:
struct DialControl_Impl
{
- ::boost::scoped_ptr<DialControlBmp> mpBmpEnabled;
- ::boost::scoped_ptr<DialControlBmp> mpBmpDisabled;
- ::boost::scoped_ptr<DialControlBmp> mpBmpBuffered;
+ std::unique_ptr<DialControlBmp> mxBmpEnabled;
+ std::unique_ptr<DialControlBmp> mxBmpDisabled;
+ std::unique_ptr<DialControlBmp> mxBmpBuffered;
Link maModifyHdl;
NumericField* mpLinkField;
sal_Int32 mnLinkedFieldValueMultiplyer;