summaryrefslogtreecommitdiff
path: root/include/svl/adrparse.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svl/adrparse.hxx')
-rw-r--r--include/svl/adrparse.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svl/adrparse.hxx b/include/svl/adrparse.hxx
index 2213e26c66f5..0961158a52e7 100644
--- a/include/svl/adrparse.hxx
+++ b/include/svl/adrparse.hxx
@@ -47,7 +47,7 @@ class SVL_DLLPUBLIC SvAddressParser
friend class SvAddressParser_Impl;
SvAddressEntry_Impl m_aFirst;
- ::std::vector< SvAddressEntry_Impl* >
+ ::std::vector< SvAddressEntry_Impl >
m_aRest;
bool m_bHasFirst;
@@ -61,7 +61,7 @@ public:
const OUString& GetEmailAddress(sal_Int32 nIndex) const
{
return nIndex == 0 ? m_aFirst.m_aAddrSpec :
- m_aRest[ nIndex - 1 ]->m_aAddrSpec;
+ m_aRest[ nIndex - 1 ].m_aAddrSpec;
}
};