diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2014-08-20 21:59:48 +0900 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-08-20 09:07:42 -0500 |
commit | 5e531e121fae61675fb358e814d49b70cfab14cf (patch) | |
tree | 3a2b686ceabacd2f44e00a0c308d2688cb4d5302 /sfx2 | |
parent | 794d5ac4ac0b1dcaac289772ce096a4295d4e15d (diff) |
fdo#75757: remove inheritance to std::vector
Change-Id: I621286f0b64ff464bc29310ba79e416abc5791d8
Reviewed-on: https://gerrit.libreoffice.org/11042
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/appdde.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/inc/appdata.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/appl/appdde.cxx b/sfx2/source/appl/appdde.cxx index 9d3d63429e32..9de5f084c4cf 100644 --- a/sfx2/source/appl/appdde.cxx +++ b/sfx2/source/appl/appdde.cxx @@ -229,8 +229,6 @@ public: }; -class SfxDdeDocTopics_Impl : public std::vector<SfxDdeDocTopic_Impl*> {}; - #if defined( WNT ) namespace { diff --git a/sfx2/source/inc/appdata.hxx b/sfx2/source/inc/appdata.hxx index 19fd3ed8b122..ead6ea5444fb 100644 --- a/sfx2/source/inc/appdata.hxx +++ b/sfx2/source/inc/appdata.hxx @@ -33,7 +33,7 @@ class SfxApplication; class SfxProgress; -class SfxDdeDocTopics_Impl; +class SfxDdeDocTopic_Impl; class DdeService; class SfxItemPool; class SfxFilterMatcher; @@ -63,6 +63,8 @@ namespace sfx2 { typedef Link* LinkPtr; +typedef std::vector<SfxDdeDocTopic_Impl*> SfxDdeDocTopics_Impl; + class SfxAppData_Impl { public: |