diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-09-25 14:53:49 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-26 19:05:34 +0000 |
commit | 6dbc69bdf44f1933687b93b4c1838b57804ecc17 (patch) | |
tree | e13491e2fad7f833b4db0133cbe1eda8b05c306a /sd/source/ui/view/drviewsa.cxx | |
parent | 01b003c47bb7bb469eaf4ebf08ded979a0424df4 (diff) |
boost->std
Change-Id: I329aabf1621b91756cd277bd0c56a2988c9ad1c0
Reviewed-on: https://gerrit.libreoffice.org/18872
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/source/ui/view/drviewsa.cxx')
-rw-r--r-- | sd/source/ui/view/drviewsa.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sd/source/ui/view/drviewsa.cxx b/sd/source/ui/view/drviewsa.cxx index e1cbfd925b33..e2ff2092d92c 100644 --- a/sd/source/ui/view/drviewsa.cxx +++ b/sd/source/ui/view/drviewsa.cxx @@ -70,7 +70,6 @@ #include <boost/bind.hpp> #include <memory> -#include <boost/scoped_ptr.hpp> using namespace ::com::sun::star; using namespace ::com::sun::star::uno; @@ -554,7 +553,7 @@ void DrawViewShell::GetStatusBarState(SfxItemSet& rSet) } else { - boost::scoped_ptr<SvxZoomItem> pZoomItem; + std::unique_ptr<SvxZoomItem> pZoomItem; sal_uInt16 nZoom = (sal_uInt16) GetActiveWindow()->GetZoom(); if( mbZoomOnPage ) |