diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2014-08-19 18:24:54 +0900 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-08-19 08:30:44 -0500 |
commit | 44afb981a587fb5b5e6fd9ba5c5b138526cfb04b (patch) | |
tree | eacc82f4134fed7882b90c71dc6a9f7981363ed8 /sw/inc/tox.hxx | |
parent | ca54b6ea903da7a1bc815c27389d2f1d362edaff (diff) |
fdo#75757: remove inheritance to std::vector
by replacing it with a typedef.
Change-Id: Iaa88086e3c5195012982dd625bfd589de2e484a2
Reviewed-on: https://gerrit.libreoffice.org/11017
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'sw/inc/tox.hxx')
-rw-r--r-- | sw/inc/tox.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/tox.hxx b/sw/inc/tox.hxx index 375a27b74e00..4165a66b7255 100644 --- a/sw/inc/tox.hxx +++ b/sw/inc/tox.hxx @@ -40,7 +40,7 @@ class SwTOXMark; class SwTxtTOXMark; class SwDoc; -class SwTOXMarks : public std::vector<SwTOXMark*> {}; +typedef std::vector<SwTOXMark*> SwTOXMarks; // Entry of content index, alphabetical index or user defined index |