summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2016-06-04 23:14:20 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-06-06 07:08:18 +0000
commit8a9559c59c0ee78cdab929b3e01fcd4bc9d569b2 (patch)
tree225db500e63a2f793a89f3d2f3395484da9475de /include
parente41d9a9ef9579c1f31dbca988d27f8320146a334 (diff)
tdf#89329: use unique_ptr for pImpl in TColumnHelper
Change-Id: I4a7594cb2a9424fddbd79e2b5d77431bf329eec9 Reviewed-on: https://gerrit.libreoffice.org/25903 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/connectivity/TColumnsHelper.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/connectivity/TColumnsHelper.hxx b/include/connectivity/TColumnsHelper.hxx
index 0c970aee722b..d4e52960ef12 100644
--- a/include/connectivity/TColumnsHelper.hxx
+++ b/include/connectivity/TColumnsHelper.hxx
@@ -33,7 +33,7 @@ namespace connectivity
*/
class OOO_DLLPUBLIC_DBTOOLS OColumnsHelper : public sdbcx::OCollection
{
- OColumnsHelperImpl* m_pImpl;
+ std::unique_ptr<OColumnsHelperImpl> m_pImpl;
protected:
OTableHelper* m_pTable;