Kaydet (Commit) 6dbc69bd authored tarafından Caolán McNamara's avatar Caolán McNamara

boost->std

Change-Id: I329aabf1621b91756cd277bd0c56a2988c9ad1c0
Reviewed-on: https://gerrit.libreoffice.org/18872Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst 01b003c4
...@@ -33,7 +33,6 @@ ...@@ -33,7 +33,6 @@
#include <memory> #include <memory>
#include <boost/ptr_container/ptr_vector.hpp> #include <boost/ptr_container/ptr_vector.hpp>
#include <boost/scoped_ptr.hpp>
class FixedText; class FixedText;
class RadioButton; class RadioButton;
...@@ -146,7 +145,7 @@ private: ...@@ -146,7 +145,7 @@ private:
VclPtr<RadioButton> pPage6_DocColors; VclPtr<RadioButton> pPage6_DocColors;
VclPtr<SdHtmlAttrPreview> pPage6_Preview; VclPtr<SdHtmlAttrPreview> pPage6_Preview;
boost::scoped_ptr< ButtonSet > mpButtonSet; std::unique_ptr< ButtonSet > mpButtonSet;
// standard controls // standard controls
VclPtr<PushButton> pLastPageButton; VclPtr<PushButton> pLastPageButton;
......
...@@ -70,7 +70,6 @@ ...@@ -70,7 +70,6 @@
#include <boost/bind.hpp> #include <boost/bind.hpp>
#include <memory> #include <memory>
#include <boost/scoped_ptr.hpp>
using namespace ::com::sun::star; using namespace ::com::sun::star;
using namespace ::com::sun::star::uno; using namespace ::com::sun::star::uno;
...@@ -554,7 +553,7 @@ void DrawViewShell::GetStatusBarState(SfxItemSet& rSet) ...@@ -554,7 +553,7 @@ void DrawViewShell::GetStatusBarState(SfxItemSet& rSet)
} }
else else
{ {
boost::scoped_ptr<SvxZoomItem> pZoomItem; std::unique_ptr<SvxZoomItem> pZoomItem;
sal_uInt16 nZoom = (sal_uInt16) GetActiveWindow()->GetZoom(); sal_uInt16 nZoom = (sal_uInt16) GetActiveWindow()->GetZoom();
if( mbZoomOnPage ) if( mbZoomOnPage )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment