diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2014-08-04 23:00:17 +0900 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-08-05 08:30:26 +0000 |
commit | a9bae49661f817236f0aa168dd2f054b6bca0b2b (patch) | |
tree | e617e53d8350ae5036fcb97de453a4bb94bb02fd /include | |
parent | 48d1f860716720abdd7febdad4b57b9f31a6a1dc (diff) |
fdo#75757: remove inheritance to std::vector
Typedef'ing SvxXMLListStyle_Impl is enough.
Change-Id: I281766822aea60794510c959581f0b821aea6642
Reviewed-on: https://gerrit.libreoffice.org/10729
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/xmloff/xmlnumi.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/xmloff/xmlnumi.hxx b/include/xmloff/xmlnumi.hxx index 86b97264237f..304fadd5a71c 100644 --- a/include/xmloff/xmlnumi.hxx +++ b/include/xmloff/xmlnumi.hxx @@ -27,7 +27,8 @@ namespace com { namespace sun { namespace star { namespace frame { class XModel; } } } } class SvI18NMap; -class SvxXMLListStyle_Impl; +class SvxXMLListLevelStyleContext_Impl; +typedef std::vector<SvxXMLListLevelStyleContext_Impl *> SvxXMLListStyle_Impl; class SvxXMLListStyleContext : public SvXMLStyleContext { |