Try to fix build bustage and also fix a couple of new warnings.

This commit is contained in:
sicking%bigfoot.com 2003-06-16 23:50:40 +00:00
parent ce4d5d65e4
commit 6da2b447fd
4 changed files with 7 additions and 3 deletions

View File

@ -120,6 +120,7 @@ private:
class BooleanResult : public txAExprResult {
public:
BooleanResult(); // Not to be implemented
BooleanResult(MBool aValue);
TX_DECL_EXPRRESULT
@ -131,6 +132,7 @@ private:
class NumberResult : public txAExprResult {
public:
NumberResult(); // Not to be implemented
NumberResult(double aValue, txResultRecycler* aRecycler);
TX_DECL_EXPRRESULT
@ -142,6 +144,7 @@ public:
class StringResult : public txAExprResult {
public:
StringResult();
StringResult(txResultRecycler* aRecycler);
StringResult(const nsAString& aValue, txResultRecycler* aRecycler);

View File

@ -44,6 +44,8 @@ class NodeSet : public txAExprResult
public:
NodeSet(); // Not to be implemented
/*
* Creates a new empty NodeSet
*/

View File

@ -41,8 +41,7 @@
#include "txIXPathContext.h"
#include "nsAutoPtr.h"
class NodeSet;
#include "NodeSet.h"
class txForwardContext : public txIEvalContext
{