summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2004-08-19 15:51:58 +0000
committerburaq <buraq@epfl.ch>2004-08-19 15:51:58 +0000
commitc5a53a3a067d92d64a50cfe5cf5730f1c5b38923 (patch)
treefec310ed8aac581fccca11ce44f9fc376e4a2eb3 /sources
parent07c7a31297d2beb41270b7f8cc3e758d6d08b219 (diff)
downloadscala-c5a53a3a067d92d64a50cfe5cf5730f1c5b38923.tar.gz
scala-c5a53a3a067d92d64a50cfe5cf5730f1c5b38923.tar.bz2
scala-c5a53a3a067d92d64a50cfe5cf5730f1c5b38923.zip
fixed handling of namespaces in attributes
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/xml/parsing/ConstructingHandler.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/xml/parsing/ConstructingHandler.scala b/sources/scala/xml/parsing/ConstructingHandler.scala
index c8c315ecfc..f49af1eed1 100644
--- a/sources/scala/xml/parsing/ConstructingHandler.scala
+++ b/sources/scala/xml/parsing/ConstructingHandler.scala
@@ -38,7 +38,7 @@ class ConstructingHandler extends MarkupHandler[Node] {
}
}
val ch: Seq[Node] = nodes;
- Some(Elem(uri, label, AttributeSeq.fromAttrs(attrSeq:_*), ch:_*));
+ Some(Elem(uri, label, AttributeSeq.fromAttrs(uri,attrSeq:_*), ch:_*));
};
def charData(pos: Int, txt: String ) =