diff options
author | August Sodora <augsod@gmail.com> | 2012-01-13 17:17:39 -0500 |
---|---|---|
committer | August Sodora <augsod@gmail.com> | 2012-01-13 22:20:59 -0500 |
commit | 445fc29e35fab58a59c6fa17ce06601eb131d440 (patch) | |
tree | f30bdf57c59fe0972402cbb462bbadb3426d782b /sw/inc/docstyle.hxx | |
parent | 91d3c11114a75f1f28b3f674e97b8c85948d5d9c (diff) |
SvStringsDtor->std::vector
Diffstat (limited to 'sw/inc/docstyle.hxx')
-rw-r--r-- | sw/inc/docstyle.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/inc/docstyle.hxx b/sw/inc/docstyle.hxx index 4c64bb648189..dea7fbfee013 100644 --- a/sw/inc/docstyle.hxx +++ b/sw/inc/docstyle.hxx @@ -46,7 +46,7 @@ class SwNumRule; /*-------------------------------------------------------------------- Local helper class. --------------------------------------------------------------------*/ -class SwPoolFmtList : public SvStringsDtor +class SwPoolFmtList : public std::vector<String> { public: SwPoolFmtList() {} @@ -54,7 +54,6 @@ public: void Erase(); }; - /*-------------------------------------------------------------------- Temporary StyleSheet. --------------------------------------------------------------------*/ |