diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-22 13:05:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-22 14:06:02 +0200 |
commit | d1de326b0b2a1208969e36f19010fdd8ee2a4fb7 (patch) | |
tree | 9de294c2e95e94210a3c6f54d968e75c30c3e88b /UnoControls/source/inc | |
parent | 717ec99667f5a9ab570f1c8581e2d7a0241c32f6 (diff) |
no need to use unique_ptr here
for such a small object
Change-Id: Idbcad7469b3871c05226e90b8d46223fe746cce2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119369
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'UnoControls/source/inc')
-rw-r--r-- | UnoControls/source/inc/progressmonitor.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/UnoControls/source/inc/progressmonitor.hxx b/UnoControls/source/inc/progressmonitor.hxx index baa06de66ded..f8a463ca88a1 100644 --- a/UnoControls/source/inc/progressmonitor.hxx +++ b/UnoControls/source/inc/progressmonitor.hxx @@ -229,11 +229,11 @@ private: // private variables private: - ::std::vector < std::unique_ptr<IMPL_TextlistItem> > maTextlist_Top; // Elements before progress + ::std::vector < IMPL_TextlistItem > maTextlist_Top; // Elements before progress css::uno::Reference< css::awt::XFixedText > m_xTopic_Top; // (used, if parameter "beforeProgress"=true in "addText, updateText, removeText") css::uno::Reference< css::awt::XFixedText > m_xText_Top; - ::std::vector < std::unique_ptr<IMPL_TextlistItem> > maTextlist_Bottom; // Elements below of progress + ::std::vector < IMPL_TextlistItem > maTextlist_Bottom; // Elements below of progress css::uno::Reference< css::awt::XFixedText > m_xTopic_Bottom; // (used, if parameter "beforeProgress"=false in "addText, updateText, removeText") css::uno::Reference< css::awt::XFixedText > m_xText_Bottom; |