summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-07-30 14:24:06 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-07-30 18:26:33 +0200
commit30562669909def344c529e9c899c03248bc11149 (patch)
tree71bee20d9e559752e4c6d25b3b09928a31f3da2d /include/svl
parent8e50f6f4d98e813ce60e7743184911e6cd554f7a (diff)
inline some use-once typedefs
Change-Id: I66400bcfef1d609662f44cc25a4984b68efb4b44 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99801 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svl')
-rw-r--r--include/svl/svdde.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/svl/svdde.hxx b/include/svl/svdde.hxx
index 546b20710e88..c0d5975e84c7 100644
--- a/include/svl/svdde.hxx
+++ b/include/svl/svdde.hxx
@@ -40,8 +40,6 @@ struct DdeItemImpData;
struct Conversation;
typedef ::std::vector< DdeService* > DdeServices;
-typedef ::std::vector< long > DdeFormats;
-typedef std::vector<std::unique_ptr<Conversation>> ConvList;
class SVL_DLLPUBLIC DdeData
@@ -287,10 +285,11 @@ protected:
const DdeTopic* GetSysTopic() const { return pSysTopic; }
private:
std::vector<DdeTopic*> aTopics;
- DdeFormats aFormats;
+ std::vector< long > aFormats;
DdeTopic* pSysTopic;
DdeString* pName;
- ConvList m_vConv;
+ std::vector<std::unique_ptr<Conversation>>
+ m_vConv;
short nStatus;
SVL_DLLPRIVATE bool HasCbFormat( sal_uInt16 );