From f17f89aadc5e88880df0c852289e2fa5b04254ba Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 4 Aug 2015 08:06:50 +0200 Subject: include: inline some use-once typedefs Change-Id: I064e95c72e5f67178cf2875f457adac241cee529 --- include/tools/inetmsg.hxx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'include/tools/inetmsg.hxx') diff --git a/include/tools/inetmsg.hxx b/include/tools/inetmsg.hxx index c064a0dc80eb..49d470b32d4c 100644 --- a/include/tools/inetmsg.hxx +++ b/include/tools/inetmsg.hxx @@ -80,8 +80,6 @@ public: } }; -typedef ::std::vector< INetMessageHeader* > HeaderList_impl; - /** RFC822 fields */ @@ -129,11 +127,11 @@ enum INetMessageContainerType }; class INetMIMEMessage; -typedef ::std::vector< INetMIMEMessage* > INetMIMEMessgeList_impl; class TOOLS_DLLPUBLIC INetMIMEMessage { - HeaderList_impl m_aHeaderList; + ::std::vector< INetMessageHeader* > + m_aHeaderList; sal_uIntPtr m_nDocSize; OUString m_aDocName; @@ -145,8 +143,8 @@ class TOOLS_DLLPUBLIC INetMIMEMessage ::std::map m_nRFC822Index; ::std::map m_nMIMEIndex; - INetMIMEMessage* pParent; - INetMIMEMessgeList_impl aChildren; + INetMIMEMessage* pParent; + ::std::vector< INetMIMEMessage* > aChildren; OString m_aBoundary; bool bHeaderParsed; -- cgit