diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-07-31 22:01:45 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-07-31 22:01:45 +0200 |
commit | 68303dee45ff6c81f5eb396df9c6805b7874cdd7 (patch) | |
tree | e86d8f8869727a47b05d3be1ba0372c95fa15355 /svl | |
parent | 0f618909d348f6ff26a34367b0d57b21c1b85a01 (diff) |
DdeServices has forward declarations so can't be typedef'd
Change-Id: I1455d380cbb8b096255a0d3cb402ff0dc4d35996
Diffstat (limited to 'svl')
-rw-r--r-- | svl/inc/svl/svdde.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/inc/svl/svdde.hxx b/svl/inc/svl/svdde.hxx index 0895a8119e9c..825e8992076c 100644 --- a/svl/inc/svl/svdde.hxx +++ b/svl/inc/svl/svdde.hxx @@ -44,7 +44,7 @@ struct DdeImp; class DdeItemImp; struct Conversation; -typedef ::std::vector< DdeService* > DdeServices; +class DdeServices : public ::std::vector< DdeService* > {}; typedef ::std::vector< long > DdeFormats; typedef ::std::vector< Conversation* > ConvList; |