summaryrefslogtreecommitdiff
path: root/include/sfx2
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-09-19 12:17:11 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-09-25 11:04:04 +0200
commit7658798496b1b3705155d1289f0fc82eab7cab7d (patch)
tree0a8311f087cff63f95f4cb440bba85d6967157f9 /include/sfx2
parent80f28ef95e7c74c8df799a47fa90ff90bfd13f61 (diff)
loplugin:useuniqueptr in CustomPropertiesWindow
Change-Id: I8d3f700fcdcb853518729f966dd8651579676a36 Reviewed-on: https://gerrit.libreoffice.org/60954 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/sfx2')
-rw-r--r--include/sfx2/dinfdlg.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/dinfdlg.hxx b/include/sfx2/dinfdlg.hxx
index d7894172753a..39a738b3edba 100644
--- a/include/sfx2/dinfdlg.hxx
+++ b/include/sfx2/dinfdlg.hxx
@@ -403,7 +403,7 @@ private:
sal_Int32 m_nLineHeight;
sal_Int32 m_nScrollPos;
std::vector<std::unique_ptr<CustomProperty>> m_aCustomProperties;
- std::vector<CustomPropertyLine*> m_aCustomPropertiesLines;
+ std::vector<std::unique_ptr<CustomPropertyLine>> m_aCustomPropertiesLines;
CustomPropertyLine* m_pCurrentLine;
SvNumberFormatter m_aNumberFormatter;
Idle m_aEditLoseFocusIdle;