summaryrefslogtreecommitdiff
path: root/sw/source/ui/inc/label.hxx
diff options
context:
space:
mode:
authorAugust Sodora <augsod@gmail.com>2012-01-12 21:28:57 -0500
committerAugust Sodora <augsod@gmail.com>2012-01-12 22:17:47 -0500
commitdea42954b5e9a22f0d498cad0cc3c373ec5940e8 (patch)
tree4ffad6d9fe304ea551e8ae63b30218d53d77c9fc /sw/source/ui/inc/label.hxx
parentab5986d4d04127fea8800345d5c0674a77bbe9df (diff)
SvStringsDtor->std::vector
Diffstat (limited to 'sw/source/ui/inc/label.hxx')
-rw-r--r--sw/source/ui/inc/label.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/inc/label.hxx b/sw/source/ui/inc/label.hxx
index 1824e49494de..8d8780ab3025 100644
--- a/sw/source/ui/inc/label.hxx
+++ b/sw/source/ui/inc/label.hxx
@@ -48,7 +48,7 @@ class SwLabDlg : public SfxTabDialog
SwLabPrtPage* pPrtPage;
std::vector<sal_uInt16> aTypeIds;
- SvStringsDtor aMakes;
+ std::vector<rtl::OUString> aMakes;
SwLabRecs* pRecs;
String aLstGroup;
@@ -74,8 +74,8 @@ public:
std::vector<sal_uInt16> &TypeIds() { return aTypeIds; }
const std::vector<sal_uInt16> &TypeIds() const { return aTypeIds; }
- SvStringsDtor &Makes() { return aMakes; }
- const SvStringsDtor &Makes() const { return aMakes; }
+ std::vector<rtl::OUString> &Makes() { return aMakes; }
+ const std::vector<rtl::OUString> &Makes() const { return aMakes; }
Printer *GetPrt();
inline void ReplaceGroup( const String &rMake );