summaryrefslogtreecommitdiff
path: root/sw/inc/fmtcol.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2016-10-05 10:52:23 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2016-10-06 05:51:23 +0000
commitf32b300c9e071c2bdee2a7b925200feb93add702 (patch)
tree1e9098a9aa4b8d2aef8fd0ed4b744723fb666a67 /sw/inc/fmtcol.hxx
parentf933da55797566cf725e35ab0df17e91c7d5598f (diff)
tdf#75757 Remove inheritance from std::vector
Change-Id: I87572c545559ef22d4f74fb63218910681c1a7d7 Reviewed-on: https://gerrit.libreoffice.org/29533 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'sw/inc/fmtcol.hxx')
-rw-r--r--sw/inc/fmtcol.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/fmtcol.hxx b/sw/inc/fmtcol.hxx
index 5c2045bad2c3..78688f02e528 100644
--- a/sw/inc/fmtcol.hxx
+++ b/sw/inc/fmtcol.hxx
@@ -207,7 +207,7 @@ public:
void RegisterToFormat( SwFormat& );
};
-class SwFormatCollConditions : public std::vector<std::unique_ptr<SwCollCondition>> {};
+using SwFormatCollConditions = std::vector<std::unique_ptr<SwCollCondition>>;
class SW_DLLPUBLIC SwConditionTextFormatColl : public SwTextFormatColl
{