Solaris: adding do_QueryInterface() wrappers to finish scc's nsCOMPtr carpool. a=scc

git-svn-id: svn://10.0.0.236/trunk@21297 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mcafee%netscape.com
1999-02-19 11:30:31 +00:00
parent d9d58d2259
commit 92753a46b3
25 changed files with 57 additions and 56 deletions

View File

@@ -33,8 +33,8 @@ nsresult SplitElementTxn::Init(nsIEditor *aEditor,
nsIDOMNode *aNode,
PRInt32 aOffset)
{
mEditor = aEditor;
mExistingRightNode = aNode;
mEditor = do_QueryInterface(aEditor);
mExistingRightNode = do_QueryInterface(aNode);
mOffset = aOffset;
return NS_OK;
}