mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-09 08:48:07 +00:00
Fixing class declaration. Not part of build yet.
This commit is contained in:
parent
0a92aeedfd
commit
2beca9026f
@ -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 <a href="mailto:kvisco@ziplink.net">Keith Visco</a>
|
||||
* @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;
|
||||
|
@ -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
|
||||
|
@ -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. <BR />
|
||||
* @author <A HREF="mailto:kvisco@ziplink.net">Keith Visco</A>
|
||||
* @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
|
||||
|
Loading…
x
Reference in New Issue
Block a user