diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-15 20:41:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-16 12:54:44 +0000 |
commit | a1ceacc17e3f30d5e9c06b3218ad8ec26ca2f1b9 (patch) | |
tree | 56a29f66f75f326a0a677ab1697ce28f1bc9fcbf /vcl/inc/unx/sm.hxx | |
parent | 18f41dfaf19d656d290c47d196ef2702e169a522 (diff) |
boost::foo_ptr->std::foo_ptr
Change-Id: I9219619b538b6530a89f5932ac51eb3b62eb396a
Diffstat (limited to 'vcl/inc/unx/sm.hxx')
-rw-r--r-- | vcl/inc/unx/sm.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/inc/unx/sm.hxx b/vcl/inc/unx/sm.hxx index 3aee67a02d9a..48d202c6a7e4 100644 --- a/vcl/inc/unx/sm.hxx +++ b/vcl/inc/unx/sm.hxx @@ -23,9 +23,9 @@ #include <X11/SM/SMlib.h> -#include "boost/scoped_ptr.hpp" #include "tools/link.hxx" #include <rtl/ustring.hxx> +#include <memory> #include "vclpluginapi.h" @@ -35,7 +35,7 @@ class SalSession; class SessionManagerClient { static SalSession * m_pSession; - static boost::scoped_ptr< ICEConnectionObserver > m_pICEConnectionObserver; + static std::unique_ptr< ICEConnectionObserver > m_xICEConnectionObserver; static SmcConn m_pSmcConnection; static OString m_aClientID; static bool m_bDocSaveDone; |