summaryrefslogtreecommitdiff
path: root/ucb/source/inc
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-07-30 14:27:36 +0000
committerKurt Zenker <kz@openoffice.org>2004-07-30 14:27:36 +0000
commit4854988d17ccd22e10846bb43f6113e3776b8a4e (patch)
tree865af598c300c95cb9e84057e59f0ab806108a76 /ucb/source/inc
parentc384852d470e7c125a4edf8127a1448286fa174a (diff)
INTEGRATION: CWS gcc340fixes01 (1.3.28); FILE MERGED
2004/07/14 07:39:23 cmc 1.3.28.2: #i31438# Hamburg likes uncouth this-> 2004/07/13 16:15:18 cmc 1.3.28.1: #i31438# gcc34 fixes for ucb
Diffstat (limited to 'ucb/source/inc')
-rw-r--r--ucb/source/inc/regexpmap.tpt18
1 files changed, 9 insertions, 9 deletions
diff --git a/ucb/source/inc/regexpmap.tpt b/ucb/source/inc/regexpmap.tpt
index fd44e1335a7d..0dde3058baa9 100644
--- a/ucb/source/inc/regexpmap.tpt
+++ b/ucb/source/inc/regexpmap.tpt
@@ -2,9 +2,9 @@
*
* $RCSfile: regexpmap.tpt,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2004-02-04 12:22:44 $
+ * last change: $Author: kz $ $Date: 2004-07-30 15:27:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -192,7 +192,7 @@ RegexpMapIterImpl< Val >::RegexpMapIterImpl(RegexpMapImpl< Val > * pTheMap,
if (bBegin)
{
m_nList = -1;
- m_aIndex = List< Val >::iterator();
+ m_aIndex = typename List< Val >::iterator();
if (!m_pMap->m_pDefault)
next();
}
@@ -343,7 +343,7 @@ RegexpMapIter< Val >::RegexpMapIter(RegexpMapIterImpl< Val > * pTheImpl):
template< typename Val >
RegexpMapIter< Val > & RegexpMapIter< Val >::operator ++()
{
- m_pImpl->next();
+ this->m_pImpl->next();
return *this;
}
@@ -352,7 +352,7 @@ template< typename Val >
RegexpMapIter< Val > RegexpMapIter< Val >::operator ++(int)
{
RegexpMapIter aTemp(*this);
- m_pImpl->next();
+ this->m_pImpl->next();
return aTemp;
}
@@ -360,28 +360,28 @@ RegexpMapIter< Val > RegexpMapIter< Val >::operator ++(int)
template< typename Val >
RegexpMapEntry< Val > & RegexpMapIter< Val >::operator *()
{
- return m_pImpl->get();
+ return this->m_pImpl->get();
}
//============================================================================
template< typename Val >
RegexpMapEntry< Val > const & RegexpMapIter< Val >::operator *() const
{
- return m_pImpl->get();
+ return this->m_pImpl->get();
}
//============================================================================
template< typename Val >
RegexpMapEntry< Val > * RegexpMapIter< Val >::operator ->()
{
- return &m_pImpl->get();
+ return &this->m_pImpl->get();
}
//============================================================================
template< typename Val >
RegexpMapEntry< Val > const * RegexpMapIter< Val >::operator ->() const
{
- return &m_pImpl->get();
+ return &this->m_pImpl->get();
}
//============================================================================