diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-27 09:37:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-30 08:22:26 +0200 |
commit | 818b837790c0807e508fc1246df3d2e07520529f (patch) | |
tree | ffdd0c99a18ced2e6dc864a9347b96f50a1a6584 /sw/source/uibase | |
parent | 15e7509e6781957bc82bc7ce7d0619179b126256 (diff) |
loplugin:useuniqueptr in SwInsertDBColAutoPilot
Change-Id: Ida2be4abdeb6788ec9074a81c927e99e633ce394
Reviewed-on: https://gerrit.libreoffice.org/58247
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/uibase')
-rw-r--r-- | sw/source/uibase/inc/dbinsdlg.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/inc/dbinsdlg.hxx b/sw/source/uibase/inc/dbinsdlg.hxx index 2ed40956a68d..c3362a52686c 100644 --- a/sw/source/uibase/inc/dbinsdlg.hxx +++ b/sw/source/uibase/inc/dbinsdlg.hxx @@ -128,8 +128,8 @@ class SwInsertDBColAutoPilot : public SfxModalDialog, public utl::ConfigItem SwView* pView; std::unique_ptr<SwTableAutoFormat> m_xTAutoFormat; - SfxItemSet* pTableSet; - SwTableRep* pRep; + std::unique_ptr<SfxItemSet> pTableSet; + std::unique_ptr<SwTableRep> pRep; sal_Int32 nGBFormatLen; DECL_LINK( PageHdl, Button*, void ); |