diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2014-08-05 09:11:25 +0900 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-08-05 21:26:50 +0000 |
commit | 223f761330486ef4c4c47f3b92cfa6dd0ed9d56a (patch) | |
tree | 8005a7b07334f09972d32e43a58987b267eb78ba /xmloff/inc | |
parent | 42172ea6478023d94d4f76f3b525180d2ff25695 (diff) |
fdo#75757: remove inheritance to std::vector
typedefs just work.
Change-Id: Ib91c0d4c383b5efac1ad9b93e574dec62e8234a4
Reviewed-on: https://gerrit.libreoffice.org/10754
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'xmloff/inc')
-rw-r--r-- | xmloff/inc/XMLTextColumnsContext.hxx | 5 | ||||
-rw-r--r-- | xmloff/inc/xmltabi.hxx | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/xmloff/inc/XMLTextColumnsContext.hxx b/xmloff/inc/XMLTextColumnsContext.hxx index a1fe4e029352..1677eea960d8 100644 --- a/xmloff/inc/XMLTextColumnsContext.hxx +++ b/xmloff/inc/XMLTextColumnsContext.hxx @@ -22,11 +22,12 @@ #include "XMLElementPropertyContext.hxx" - -class XMLTextColumnsArray_Impl; +class XMLTextColumnContext_Impl; class XMLTextColumnSepContext_Impl; class SvXMLTokenMap; +typedef std::vector<XMLTextColumnContext_Impl *> XMLTextColumnsArray_Impl; + class XMLTextColumnsContext :public XMLElementPropertyContext { const OUString sSeparatorLineIsOn; diff --git a/xmloff/inc/xmltabi.hxx b/xmloff/inc/xmltabi.hxx index d7e7752e04a6..e8e1e275ab14 100644 --- a/xmloff/inc/xmltabi.hxx +++ b/xmloff/inc/xmltabi.hxx @@ -22,9 +22,10 @@ #include "XMLElementPropertyContext.hxx" -class SvxXMLTabStopArray_Impl; class SvXMLImport; +class SvxXMLTabStopContext_Impl; +typedef std::vector<SvxXMLTabStopContext_Impl *> SvxXMLTabStopArray_Impl; class SvxXMLTabStopImportContext : public XMLElementPropertyContext { |