From 98fbe10fa3a8e9d795f9ee294b14585efe4c615a Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Mon, 16 Oct 2017 17:08:15 +0900 Subject: svl: Drop unnecessary abstraction of DdeItemImp Instead, just use std::vector. Change-Id: If0c4943bdf370211cd6e0466a899da718480a4ae Reviewed-on: https://gerrit.libreoffice.org/43415 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/svl/svdde.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/svl/svdde.hxx') 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* pImpData; protected: sal_uInt8 nType; -- cgit