summaryrefslogtreecommitdiff
path: root/include/svl/svdde.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2017-10-16 17:08:15 +0900
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-10-16 12:56:58 +0200
commit98fbe10fa3a8e9d795f9ee294b14585efe4c615a (patch)
tree1962e3a0a53a6f62e1819c564f082b9193ebd6f8 /include/svl/svdde.hxx
parent1ca2a2119ad3e910f848344d51ba9ec173880715 (diff)
svl: Drop unnecessary abstraction of DdeItemImp
Instead, just use std::vector<DdeItemImpData>. Change-Id: If0c4943bdf370211cd6e0466a899da718480a4ae Reviewed-on: https://gerrit.libreoffice.org/43415 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svl/svdde.hxx')
-rw-r--r--include/svl/svdde.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svl/svdde.hxx b/include/svl/svdde.hxx
index 2415ad8e03ba..003a14f83923 100644
--- a/include/svl/svdde.hxx
+++ b/include/svl/svdde.hxx
@@ -43,7 +43,7 @@ class DdeTopic;
class DdeService;
struct DdeDataImp;
struct DdeImp;
-class DdeItemImp;
+struct DdeItemImpData;
struct Conversation;
typedef ::std::vector< DdeService* > DdeServices;
@@ -207,7 +207,7 @@ class SVL_DLLPUBLIC DdeItem
friend class DdeTopic;
DdeString* pName;
DdeTopic* pMyTopic;
- DdeItemImp* pImpData;
+ std::vector<DdeItemImpData>* pImpData;
protected:
sal_uInt8 nType;