Tweaked the content sink to remove an unused argument from the Init method.

This commit is contained in:
hyatt%netscape.com 1999-03-12 05:21:01 +00:00
Родитель 9cf9918ee2
Коммит 7b38b946bc
2 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -25,7 +25,6 @@
class nsIDocument;
class nsIRDFDataSource;
class nsIWebShell;
// {E49AA620-C16C-11d2-A6AA-00104BDE6048}
#define NS_IXULCONTENTSINK_IID \
@ -38,7 +37,6 @@ public:
static const nsIID& GetIID() { static nsIID iid = NS_IXULCONTENTSINK_IID; return iid; }
NS_IMETHOD Init(nsIDocument* aDocument,
nsIWebShell* aWebShell,
nsIRDFDataSource* aDataSource) = 0;
};

Просмотреть файл

@ -143,7 +143,7 @@ public:
NS_IMETHOD AddEntityReference(const nsIParserNode& aNode);
// nsIXULContentSink
NS_IMETHOD Init(nsIDocument* aDocument, nsIWebShell* aWebShell, nsIRDFDataSource* aDataSource);
NS_IMETHOD Init(nsIDocument* aDocument, nsIRDFDataSource* aDataSource);
protected:
static nsrefcnt gRefCnt;
@ -841,7 +841,7 @@ XULContentSinkImpl::AddEntityReference(const nsIParserNode& aNode)
// nsIRDFContentSink interface
NS_IMETHODIMP
XULContentSinkImpl::Init(nsIDocument* aDocument, nsIWebShell* aWebShell, nsIRDFDataSource* aDataSource)
XULContentSinkImpl::Init(nsIDocument* aDocument, nsIRDFDataSource* aDataSource)
{
nsresult rv;