Backout accidental checkin.

git-svn-id: svn://10.0.0.236/trunk@163747 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
tor%cs.brown.edu
2004-10-14 17:11:53 +00:00
parent de3e0758fc
commit 3b73929e09
2 changed files with 1 additions and 11 deletions

View File

@@ -72,7 +72,6 @@ CPPSRCS = \
nsSVGCircleElement.cpp \
nsSVGClassValue.cpp \
nsSVGCoordCtxProvider.cpp \
nsSVGDefsElement.cpp \
nsSVGElement.cpp \
nsSVGElementFactory.cpp \
nsSVGEllipseElement.cpp \
@@ -103,13 +102,12 @@ CPPSRCS = \
nsSVGRectElement.cpp \
nsSVGSVGElement.cpp \
nsSVGStyleElement.cpp \
nsSVGSymbolElement.cpp \
nsSVGTSpanElement.cpp \
nsSVGTextElement.cpp \
nsSVGTransform.cpp \
nsSVGTransformList.cpp \
nsSVGUseElement.cpp \
nsSVGValue.cpp \
nsSVGDefsElement.cpp \
$(NULL)
include $(topsrcdir)/config/config.mk

View File

@@ -75,10 +75,6 @@ nsresult
NS_NewSVGDefsElement(nsIContent **aResult, nsINodeInfo *aNodeInfo);
nsresult
NS_NewSVGScriptElement(nsIContent **aResult, nsINodeInfo *aNodeInfo);
nsresult
NS_NewSVGUseElement(nsIContent **aResult, nsINodeInfo *aNodeInfo);
nsresult
NS_NewSVGSymbolElement(nsIContent **aResult, nsINodeInfo *aNodeInfo);
nsresult
NS_NewSVGElement(nsIContent** aResult, nsINodeInfo *aNodeInfo)
@@ -117,10 +113,6 @@ NS_NewSVGElement(nsIContent** aResult, nsINodeInfo *aNodeInfo)
return NS_NewSVGDefsElement(aResult, aNodeInfo);
if (name == nsSVGAtoms::script)
return NS_NewSVGScriptElement(aResult, aNodeInfo);
if (name == nsSVGAtoms::use)
return NS_NewSVGUseElement(aResult, aNodeInfo);
if (name == nsSVGAtoms::symbol)
return NS_NewSVGSymbolElement(aResult, aNodeInfo);
// if we don't know what to create, just create a standard xml element:
return NS_NewXMLElement(aResult, aNodeInfo);