diff --git a/mozilla/extensions/transformiix/source/base/List.h b/mozilla/extensions/transformiix/source/base/List.h index a8f8b74ab63..9f68253945e 100644 --- a/mozilla/extensions/transformiix/source/base/List.h +++ b/mozilla/extensions/transformiix/source/base/List.h @@ -21,7 +21,7 @@ * Keith Visco, kvisco@ziplink.net * -- original author. * - * $Id: List.h,v 1.2 1999-11-15 07:12:40 nisheeth%netscape.com Exp $ + * $Id: List.h,v 1.3 2000-04-06 22:35:28 Peter.VanderBeken%pandora.be Exp $ */ #include "baseutils.h" @@ -32,7 +32,7 @@ /** * Represents an ordered list of Object pointers. Modeled after a Java 2 List. * @author Keith Visco - * @version $Revision: 1.2 $ $Date: 1999-11-15 07:12:40 $ + * @version $Revision: 1.3 $ $Date: 2000-04-06 22:35:28 $ **/ class List { @@ -178,7 +178,7 @@ private: int count; //-- points to the current list item - List::ListItem* currentItem; + ListItem* currentItem; //-- points to the list to iterator over List* list; diff --git a/mozilla/extensions/transformiix/source/base/primitives.h b/mozilla/extensions/transformiix/source/base/primitives.h index 5c70b8d62c5..d6821f4ef90 100644 --- a/mozilla/extensions/transformiix/source/base/primitives.h +++ b/mozilla/extensions/transformiix/source/base/primitives.h @@ -28,7 +28,7 @@ * Eric Du, duxy@leyou.com.cn * -- added fix for FreeBSD * - * $Id: primitives.h,v 1.3 2000-02-18 00:11:24 kvisco%ziplink.net Exp $ + * $Id: primitives.h,v 1.4 2000-04-06 22:36:39 Peter.VanderBeken%pandora.be Exp $ */ @@ -124,7 +124,7 @@ public: * The result into the destination String. * @return the given dest string **/ - static String& Double::toString(double value, String& dest); + static String& toString(double value, String& dest); private: @@ -158,7 +158,7 @@ public: /** * Creates a new Integer based on the value of the given String **/ - Integer::Integer(const String& str); + Integer(const String& str); /** * Returns the int value of this Integer diff --git a/mozilla/extensions/transformiix/source/xpath/FunctionLib.h b/mozilla/extensions/transformiix/source/xpath/FunctionLib.h index f2ae3bc2580..8d9712f4746 100644 --- a/mozilla/extensions/transformiix/source/xpath/FunctionLib.h +++ b/mozilla/extensions/transformiix/source/xpath/FunctionLib.h @@ -24,7 +24,7 @@ * Olivier Gerardin, ogerardin@vo.lu * -- added number functions * - * $Id: FunctionLib.h,v 1.1 2000-04-06 07:45:30 kvisco%ziplink.net Exp $ + * $Id: FunctionLib.h,v 1.2 2000-04-06 22:35:20 Peter.VanderBeken%pandora.be Exp $ */ @@ -166,7 +166,7 @@ protected: * Evaluates the given Expression and converts it's result to a String. * The value is appended to the given destination String **/ - void FunctionCall::evaluateToString + void evaluateToString (Expr* expr, Node* context, ContextState* cs, String& dest); /**