diff -r 855c486b9360 -r 0dc9286ad3d4 mapcenterobj.cpp --- a/mapcenterobj.cpp Mon Feb 28 16:22:29 2005 +0000 +++ b/mapcenterobj.cpp Wed Jul 13 11:36:15 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");