diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-25 11:50:14 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-26 08:10:52 +0100 |
commit | 398bbde8231e77bd4106c09c34839f0f16f2f7ee (patch) | |
tree | 195bbc38e3d96eef620a6a50e33d0ea15a47d0a3 /sd/inc/OutlinerIterator.hxx | |
parent | c7e2b4ff70c751541167fea7adacaf2556b43312 (diff) |
expand out SdrObjectWeakRef and SdrPageWeakRef typedefs
Change-Id: Icacc7354df4a927533e6fec072cdd527e4c57b96
Reviewed-on: https://gerrit.libreoffice.org/48566
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/inc/OutlinerIterator.hxx')
-rw-r--r-- | sd/inc/OutlinerIterator.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/inc/OutlinerIterator.hxx b/sd/inc/OutlinerIterator.hxx index 8271916d8b0a..38899e763709 100644 --- a/sd/inc/OutlinerIterator.hxx +++ b/sd/inc/OutlinerIterator.hxx @@ -224,7 +224,7 @@ private: This specifies at which object the iterator points initially. */ static Iterator CreateSelectionIterator ( - const ::std::vector<SdrObjectWeakRef>& rObjectList, + const ::std::vector<::tools::WeakReference<SdrObject>>& rObjectList, SdDrawDocument* pDocument, const std::shared_ptr<ViewShell>& rpViewShell, bool bDirectionIsForward, @@ -297,7 +297,7 @@ public: bool operator== (const IteratorPosition& aPosition) const; /// Pointer to the actual <type>SdrObject</type> object. - SdrObjectWeakRef mxObject; + ::tools::WeakReference<SdrObject> mxObject; /// Number of the actual SdrText from the current <type>SdrObject</type> sal_Int32 mnText; |