summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/gridwin.hxx
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-03-09 18:13:36 +0900
committerTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-03-10 14:04:34 +0900
commit7ba4405fca7ce0fa8f0d807375a162a344428294 (patch)
tree649090e89aedafc9b57ce7d4807248314ce554ea /sc/source/ui/inc/gridwin.hxx
parente5f93bc97e39e7ff33dcf573186c8c6b4a4d587b (diff)
ScGridWindow: scoped_ptr -> unique_ptr
Change-Id: I6a888b58668ccb64c5a9c3270d06c3b9bcf8ce64
Diffstat (limited to 'sc/source/ui/inc/gridwin.hxx')
-rw-r--r--sc/source/ui/inc/gridwin.hxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/sc/source/ui/inc/gridwin.hxx b/sc/source/ui/inc/gridwin.hxx
index 395c204f2a59..fa0d2c029274 100644
--- a/sc/source/ui/inc/gridwin.hxx
+++ b/sc/source/ui/inc/gridwin.hxx
@@ -28,7 +28,6 @@
#include <com/sun/star/sheet/DataPilotFieldOrientation.hpp>
#include <basegfx/matrix/b2dhommatrix.hxx>
-#include <boost/scoped_ptr.hpp>
#include <boost/ptr_container/ptr_map.hpp>
#include <boost/ptr_container/ptr_vector.hpp>
#include <vector>
@@ -105,7 +104,7 @@ class ScGridWindow : public vcl::Window, public DropTargetHelper, public DragSou
::sdr::overlay::OverlayObjectList* mpOOHeader;
::sdr::overlay::OverlayObjectList* mpOOShrink;
- boost::scoped_ptr<Rectangle> mpAutoFillRect;
+ std::unique_ptr<Rectangle> mpAutoFillRect;
struct MouseEventState;
@@ -128,7 +127,7 @@ class ScGridWindow : public vcl::Window, public DropTargetHelper, public DragSou
VisibleRange maVisibleRange;
- boost::scoped_ptr<sc::SpellCheckContext> mpSpellCheckCxt;
+ std::unique_ptr<sc::SpellCheckContext> mpSpellCheckCxt;
ScViewData* pViewData;
ScSplitPos eWhich;
@@ -139,9 +138,9 @@ class ScGridWindow : public vcl::Window, public DropTargetHelper, public DragSou
std::unique_ptr<ScFilterListBox> mpFilterBox;
std::unique_ptr<FloatingWindow> mpFilterFloat;
- boost::scoped_ptr<ScCheckListMenuWindow> mpAutoFilterPopup;
- boost::scoped_ptr<ScCheckListMenuWindow> mpDPFieldPopup;
- boost::scoped_ptr<ScDPFieldButton> mpFilterButton;
+ std::unique_ptr<ScCheckListMenuWindow> mpAutoFilterPopup;
+ std::unique_ptr<ScCheckListMenuWindow> mpDPFieldPopup;
+ std::unique_ptr<ScDPFieldButton> mpFilterButton;
sal_uInt16 nCursorHideCount;