Bug 157142: get rid of txAtom typedef

r=Pike rs=peterv


git-svn-id: svn://10.0.0.236/trunk@136564 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sicking%bigfoot.com
2003-01-18 00:37:12 +00:00
parent 9f9ca4ebe3
commit 4e8212e9c8
53 changed files with 127 additions and 129 deletions

View File

@@ -161,7 +161,7 @@ ExprResult* NodeSetFunctionCall::evaluate(txIEvalContext* aContext) {
case LOCAL_NAME:
{
nsAutoString localName;
txAtom* localNameAtom;
nsIAtom* localNameAtom;
node->getLocalName(&localNameAtom);
if (localNameAtom) {
// Node has a localName
@@ -220,7 +220,7 @@ ExprResult* NodeSetFunctionCall::evaluate(txIEvalContext* aContext) {
return new StringResult(NS_LITERAL_STRING("error"));
}
nsresult NodeSetFunctionCall::getNameAtom(txAtom** aAtom)
nsresult NodeSetFunctionCall::getNameAtom(nsIAtom** aAtom)
{
switch (mType) {
case COUNT: