From 9d9091443f9d9b388d939f01739bf2abb6f3a63b Mon Sep 17 00:00:00 2001 From: "Peter.VanderBeken%pandora.be" Date: Thu, 6 Apr 2000 22:37:48 +0000 Subject: [PATCH] Fixing class declaration. Not part of build yet. a=leaf git-svn-id: svn://10.0.0.236/trunk@65447 18797224-902f-48f8-a5cc-f745e15eee43 --- .../extensions/transformiix/source/base/StringList.h | 6 +++--- .../extensions/transformiix/source/xml/XMLDOMUtils.h | 6 +++--- mozilla/extensions/transformiix/source/xpath/Expr.h | 10 +++++----- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/mozilla/extensions/transformiix/source/base/StringList.h b/mozilla/extensions/transformiix/source/base/StringList.h index 6824ad8ea24..f323eda77d2 100644 --- a/mozilla/extensions/transformiix/source/base/StringList.h +++ b/mozilla/extensions/transformiix/source/base/StringList.h @@ -23,13 +23,13 @@ * Bob Miller, kbob@oblix.com * -- plugged core leak. * - * $Id: StringList.h,v 1.5 2000-02-22 11:10:01 kvisco%ziplink.net Exp $ + * $Id: StringList.h,v 1.6 2000-04-06 22:37:29 Peter.VanderBeken%pandora.be Exp $ */ /** * A class for keeping an ordered list of Strings * @author Keith Visco - * @version $Revision: 1.5 $ $Date: 2000-02-22 11:10:01 $ + * @version $Revision: 1.6 $ $Date: 2000-04-06 22:37:29 $ **/ #include "String.h" @@ -130,7 +130,7 @@ public: private: - StringList::StringListItem* currentItem; + StringListItem* currentItem; StringList* stringList; MBool allowRemove; diff --git a/mozilla/extensions/transformiix/source/xml/XMLDOMUtils.h b/mozilla/extensions/transformiix/source/xml/XMLDOMUtils.h index 8a932e52d9e..02bcb3c43e6 100644 --- a/mozilla/extensions/transformiix/source/xml/XMLDOMUtils.h +++ b/mozilla/extensions/transformiix/source/xml/XMLDOMUtils.h @@ -21,7 +21,7 @@ * Keith Visco * -- original author. * - * $Id: XMLDOMUtils.h,v 1.2 1999-11-15 07:12:49 nisheeth%netscape.com Exp $ + * $Id: XMLDOMUtils.h,v 1.3 2000-04-06 22:37:48 Peter.VanderBeken%pandora.be Exp $ */ /** @@ -41,12 +41,12 @@ public: * Copies the given Node, using the owner Document to create all * necessary new Node(s) **/ - static Node* XMLDOMUtils::copyNode(Node* node, Document* owner); + static Node* copyNode(Node* node, Document* owner); /** * Appends the value of the given Node to the target DOMString **/ - static void XMLDOMUtils::getNodeValue(Node* node, DOMString* target); + static void getNodeValue(Node* node, DOMString* target); }; //-- XMLDOMUtils diff --git a/mozilla/extensions/transformiix/source/xpath/Expr.h b/mozilla/extensions/transformiix/source/xpath/Expr.h index 49642e2278f..365de070edb 100644 --- a/mozilla/extensions/transformiix/source/xpath/Expr.h +++ b/mozilla/extensions/transformiix/source/xpath/Expr.h @@ -25,14 +25,14 @@ * - changed constant short declarations in many of the classes * with enumerations, commented with //--LF * - * $Id: Expr.h,v 1.1 2000-04-06 07:45:23 kvisco%ziplink.net Exp $ + * $Id: Expr.h,v 1.2 2000-04-06 22:34:02 Peter.VanderBeken%pandora.be Exp $ */ /** * XSL expression class definitions. * Much of this code was ported from XSL:P.
* @author Keith Visco - * @version $Revision: 1.1 $ $Date: 2000-04-06 07:45:23 $ + * @version $Revision: 1.2 $ $Date: 2000-04-06 22:34:02 $ **/ #ifndef TRANSFRMX_EXPR_H @@ -414,7 +414,7 @@ public: /** * Creates a new BasicNodeExpr of the given type **/ - BasicNodeExpr::BasicNodeExpr(NodeExpr::NodeExprType nodeExprType); + BasicNodeExpr(NodeExprType nodeExprType); /** * Destroys this BasicNodeExpr @@ -465,7 +465,7 @@ public: virtual void toString(String& dest); private: - NodeExpr::NodeExprType type; + NodeExprType type; }; //-- BasicNodeExpr /** @@ -1314,7 +1314,7 @@ public: * @param expr the Expr to add to this PathExpr * @param index the index at which to add the given Expr **/ - void PathExpr::addPatternExpr(int index, PatternExpr* expr, short ancestryOp); + void addPatternExpr(int index, PatternExpr* expr, short ancestryOp); /** * Adds the PatternExpr to this PathExpr