summaryrefslogtreecommitdiff
path: root/include/svl/adrparse.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/svl/adrparse.hxx
parent50097a8bb2be903d8a985f6f03f364567bf4643d (diff)
include: inline some use-once typedefs
Change-Id: I064e95c72e5f67178cf2875f457adac241cee529
Diffstat (limited to 'include/svl/adrparse.hxx')
-rw-r--r--include/svl/adrparse.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/svl/adrparse.hxx b/include/svl/adrparse.hxx
index b4e4f1b2e678..2213e26c66f5 100644
--- a/include/svl/adrparse.hxx
+++ b/include/svl/adrparse.hxx
@@ -42,16 +42,14 @@ struct SvAddressEntry_Impl
};
-typedef ::std::vector< SvAddressEntry_Impl* > SvAddressList_Impl;
-
-
class SVL_DLLPUBLIC SvAddressParser
{
friend class SvAddressParser_Impl;
SvAddressEntry_Impl m_aFirst;
- SvAddressList_Impl m_aRest;
- bool m_bHasFirst;
+ ::std::vector< SvAddressEntry_Impl* >
+ m_aRest;
+ bool m_bHasFirst;
public:
SvAddressParser(const OUString& rInput);