summaryrefslogtreecommitdiffstats
path: root/include/tools/inetmsg.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-04 08:06:50 +0200
committerNoel Grandin <noel@peralex.com>2015-08-04 08:55:57 +0200
commitf17f89aadc5e88880df0c852289e2fa5b04254ba (patch)
tree13e85b793019f5c4eab1e2282a94a20b896bd769 /include/tools/inetmsg.hxx
parentbasic,basctl: inline some use-once typedefs (diff)
downloadcore-f17f89aadc5e88880df0c852289e2fa5b04254ba.tar.gz
core-f17f89aadc5e88880df0c852289e2fa5b04254ba.zip
include: inline some use-once typedefs
Change-Id: I064e95c72e5f67178cf2875f457adac241cee529
Diffstat (limited to 'include/tools/inetmsg.hxx')
-rw-r--r--include/tools/inetmsg.hxx10
1 files changed, 4 insertions, 6 deletions
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<InetMessageField, sal_uIntPtr> m_nRFC822Index;
::std::map<InetMessageMime, sal_uIntPtr> m_nMIMEIndex;
- INetMIMEMessage* pParent;
- INetMIMEMessgeList_impl aChildren;
+ INetMIMEMessage* pParent;
+ ::std::vector< INetMIMEMessage* > aChildren;
OString m_aBoundary;
bool bHeaderParsed;