summaryrefslogtreecommitdiff
path: root/include/vcl/settings.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-02-06 09:46:57 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-02-06 16:45:13 +0000
commitc7258cfccdf9f4c5235da1b135801f957a5b0ec1 (patch)
treed5af5085ad1327afe2d41045ea452e017fea1fb6 /include/vcl/settings.hxx
parent027c383584bff4ea2aa7aa2b9e294e614087f28f (diff)
shared_ptr<T>(new T(args)) -> make_shared<T>(args)
and boost:make_shared->std::make_shared Change-Id: Ic1e187c52c856a7b27817967b2caa8920f23a98d
Diffstat (limited to 'include/vcl/settings.hxx')
-rw-r--r--include/vcl/settings.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/vcl/settings.hxx b/include/vcl/settings.hxx
index c701654770dd..204a05d7470d 100644
--- a/include/vcl/settings.hxx
+++ b/include/vcl/settings.hxx
@@ -32,7 +32,7 @@
#include <o3tl/typed_flags_set.hxx>
#include <boost/optional.hpp>
-#include <boost/shared_ptr.hpp>
+#include <memory>
class CollatorWrapper;
class LocaleDataWrapper;
@@ -70,7 +70,7 @@ class VCL_DLLPUBLIC MouseSettings
{
private:
void CopyData();
- boost::shared_ptr<ImplMouseData> mpData;
+ std::shared_ptr<ImplMouseData> mxData;
public:
MouseSettings();
@@ -201,7 +201,7 @@ class VCL_DLLPUBLIC StyleSettings
void CopyData();
private:
- boost::shared_ptr<ImplStyleData> mpData;
+ std::shared_ptr<ImplStyleData> mxData;
public:
StyleSettings();
@@ -573,7 +573,7 @@ class VCL_DLLPUBLIC MiscSettings
void CopyData();
private:
- boost::shared_ptr<ImplMiscData> mpData;
+ std::shared_ptr<ImplMiscData> mxData;
public:
MiscSettings();
@@ -598,7 +598,7 @@ public:
class VCL_DLLPUBLIC HelpSettings
{
void CopyData();
- boost::shared_ptr<ImplHelpData> mpData;
+ std::shared_ptr<ImplHelpData> mxData;
public:
HelpSettings();
@@ -632,7 +632,7 @@ class VCL_DLLPUBLIC AllSettings
private:
void CopyData();
- boost::shared_ptr<ImplAllSettingsData> mpData;
+ std::shared_ptr<ImplAllSettingsData> mxData;
public:
AllSettings();