Quellcode durchsuchen

- little patch in the wait of an haxe bug fix (try to create a project with an empty Comment.hx file without this modification to see the bug)

Laurent Bedubourg vor 19 Jahren
Ursprung
Commit
775a35ff37
1 geänderte Dateien mit 7 neuen und 7 gelöschten Zeilen
  1. 7 7
      std/Xml.hx

+ 7 - 7
std/Xml.hx

@@ -97,13 +97,13 @@ extern class Xml {
 		#else error
 		#end
 
-		Element = "element";
-		PCData = "pcdata";
-		CData = "cdata";
-		Comment = "comment";
-		DocType = "doctype";
-		Prolog = "prolog";
-		Document = "document";
+		Xml.Element = "element";
+		Xml.PCData = "pcdata";
+		Xml.CData = "cdata";
+		Xml.Comment = "comment";
+		Xml.DocType = "doctype";
+		Xml.Prolog = "prolog";
+		Xml.Document = "document";
 	}
 
 }