summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc/label.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-10-05 22:48:53 +0200
committerMichael Stahl <mstahl@redhat.com>2015-10-05 23:28:08 +0200
commit3bcb74175b959809d1dd85a4f6a9f636366b81c1 (patch)
tree31af7338126a50217032181a4f21043b4ce8eaef /sw/source/uibase/inc/label.hxx
parent89ed0427bdaa74efbde698b81ceb39b1be0c1e3d (diff)
sw: replace boost::ptr_vector with std::vector<std::unique_ptr>
Change-Id: I1e6ccafea4c876b27e0a57e76c93f075f67a5f54
Diffstat (limited to 'sw/source/uibase/inc/label.hxx')
-rw-r--r--sw/source/uibase/inc/label.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/uibase/inc/label.hxx b/sw/source/uibase/inc/label.hxx
index bb23e44c80e7..d9ffa02b8a6c 100644
--- a/sw/source/uibase/inc/label.hxx
+++ b/sw/source/uibase/inc/label.hxx
@@ -38,7 +38,7 @@ class SwLabDlg : public SfxTabDialog
std::vector<sal_uInt16> aTypeIds;
std::vector<OUString> aMakes;
- SwLabRecs* pRecs;
+ SwLabRecs* m_pRecs;
OUString aLstGroup;
OUString m_sBusinessCardDlg;
bool m_bLabel;
@@ -61,8 +61,8 @@ public:
SwLabRec* GetRecord(const OUString &rRecName, bool bCont);
void GetLabItem(SwLabItem &rItem);
- SwLabRecs &Recs() { return *pRecs; }
- const SwLabRecs &Recs() const { return *pRecs; }
+ SwLabRecs &Recs() { return *m_pRecs; }
+ const SwLabRecs &Recs() const { return *m_pRecs; }
std::vector<sal_uInt16> &TypeIds() { return aTypeIds; }
const std::vector<sal_uInt16> &TypeIds() const { return aTypeIds; }