From 81e7d758bbb83fc1bdf9df2b9b17d4a7998aec5b Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 3 Dec 2007 14:20:45 +0000 Subject: Fixed the broken Bu::TafReader, it was stopping the parse after the first '}', not the last... --- src/tafreader.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/tafreader.cpp b/src/tafreader.cpp index 7054581..ea4c955 100644 --- a/src/tafreader.cpp +++ b/src/tafreader.cpp @@ -51,7 +51,10 @@ void Bu::TafReader::groupContent( Bu::TafGroup *pGroup ) { ws(); if( c == '{' ) + { pGroup->addChild( readGroup() ); + next(); + } else if( c == '}' ) return; else if( c == '/' && la == '*' ) -- cgit v1.2.3