summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/filtdlg.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-06-27 13:55:01 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-06-28 08:33:36 +0200
commit4baf5adc8f397df0c52d6cba97c5de18682d9429 (patch)
treeea2b107d189156bc1ace682b4fa5434dd69f06ab /sc/source/ui/inc/filtdlg.hxx
parentc25db26f4c2163c8fb8824ecf291dd39d7252d66 (diff)
loplugin:useuniqueptr in ScFilterDlg
Change-Id: I8d7561df19d433db5454bcf4d60e1cb81c44f031 Reviewed-on: https://gerrit.libreoffice.org/56558 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/inc/filtdlg.hxx')
-rw-r--r--sc/source/ui/inc/filtdlg.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/inc/filtdlg.hxx b/sc/source/ui/inc/filtdlg.hxx
index c257236e8e40..8200b1c4b242 100644
--- a/sc/source/ui/inc/filtdlg.hxx
+++ b/sc/source/ui/inc/filtdlg.hxx
@@ -114,11 +114,11 @@ private:
const OUString aStrNotEmpty;
const OUString aStrColumn;
- ScFilterOptionsMgr* pOptionsMgr;
+ std::unique_ptr<ScFilterOptionsMgr> pOptionsMgr;
const sal_uInt16 nWhichQuery;
ScQueryParam theQueryData;
- ScQueryItem* pOutItem;
+ std::unique_ptr<ScQueryItem> pOutItem;
ScViewData* pViewData;
ScDocument* pDoc;
SCTAB nSrcTab;
@@ -135,7 +135,7 @@ private:
EntryListsMap m_EntryLists;
// Hack: RefInput control
- Timer* pTimer;
+ std::unique_ptr<Timer> pTimer;
private:
void Init ( const SfxItemSet& rArgSet );