summaryrefslogtreecommitdiff
path: root/autodoc/source/inc
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-07-30 14:22:07 +0000
committerKurt Zenker <kz@openoffice.org>2004-07-30 14:22:07 +0000
commit907d5604fd7cca1e43f3955ad346c71554b35e54 (patch)
tree56e30c26db40a8d51df5f19b6db3c641c6063cd3 /autodoc/source/inc
parent69181c42e1ee91e6392a2ff2f872c3e88e83b234 (diff)
INTEGRATION: CWS gcc340fixes01 (1.2.64); FILE MERGED
2004/07/22 11:37:46 hr 1.2.64.2: #i28294#: use a more idiomatic approach to resolve template class bese members/methods 2004/06/04 15:14:23 fa 1.2.64.1: #i28928# gcc 3.4 fixes (must use explicit scoping)
Diffstat (limited to 'autodoc/source/inc')
-rw-r--r--autodoc/source/inc/estack.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/autodoc/source/inc/estack.hxx b/autodoc/source/inc/estack.hxx
index 59b6bee3c86e..55afc68644d3 100644
--- a/autodoc/source/inc/estack.hxx
+++ b/autodoc/source/inc/estack.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: estack.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: hr $ $Date: 2003-06-30 15:27:34 $
+ * last change: $Author: kz $ $Date: 2004-07-30 15:22:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -98,11 +98,11 @@ class EStack : private std::slist<ELEM>
bool operator==(
const EStack<ELEM> &
i_r2 ) const
- { return std::operator==( Base(), i_rStack.Base() ); }
+ { return std::operator==( Base(), this->i_rStack.Base() ); }
bool operator<(
const EStack<ELEM> &
i_r2 ) const
- { return std::operator<( Base(), i_rStack.Base() ); }
+ { return std::operator<( Base(), this->i_rStack.Base() ); }
// OPERATIONS
void push(
const value_type & i_rElem )