* BUG: XmlWriter: Buffers are now correctly flushed when ending a document.

git-svn-id: svn://localhost/gambas/trunk@7179 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Adrien Prokopowicz 2015-07-11 22:36:36 +00:00
parent 84b7875611
commit 90ce0adbba
3 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,4 @@
[Component]
Key=gb.xml
Version=0.0.2
Version=3.6.90
State=1

View File

@ -1,5 +1,5 @@
# Gambas Project File 3.0
# Compiled with Gambas 3.4.0
# Compiled with Gambas 3.7.90
Title=gb.xml
Startup=MTest
Version=3.6.90

View File

@ -203,6 +203,8 @@ Public Function EndDocument() As String
Me.EndElement()
Wend
$opened = False
Flush #$stream
Return $buffer
End