diff -r 6783e13bb05d -r f688a9913724 mapcenterobj.cpp --- a/mapcenterobj.cpp Sat Apr 09 22:50:08 2005 +0000 +++ b/mapcenterobj.cpp Mon Apr 18 06:17:00 2005 +0000 @@ -151,15 +151,20 @@ if (!note.isEmpty() ) s+=note.saveToDir(); + // Save branches + BranchObj *bo; + for (bo=branch.first(); bo; bo=branch.next() ) + s+=bo->saveToDir(tmpdir,prefix, offset); + // Save FloatImages FloatImageObj *fio; for (fio=floatimage.first(); fio; fio=floatimage.next() ) s+=fio->saveToDir (tmpdir,prefix); - // Save branches - BranchObj *bo; - for (bo=branch.first(); bo; bo=branch.next() ) - s+=bo->saveToDir(tmpdir,prefix, offset); + // Save XLinks + XLinkObj *xlo; + for (xlo=xlink.first(); xlo; xlo=xlink.next() ) + s+=xlo->saveToDir(); decIndent(); s+=endElement ("mapcenter");