2016-08-03 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdlibrary(1) that caused exports to contain incorrect
	marker data in the RDXL file structure.
This commit is contained in:
Fred Gleason
2016-08-03 12:21:05 -04:00
parent d232842b0c
commit 51cdcfb9be
9 changed files with 87 additions and 38 deletions

View File

@@ -435,7 +435,7 @@ void MainObject::ExportCut(RDCart *cart,RDCut *cut)
filename+="xml";
if((f=fopen(filename,"w"))!=NULL) {
fprintf(f,"%s\n",
(const char *)cart->xml(true,&settings,cut->cutNumber()));
(const char *)cart->xml(true,true,&settings,cut->cutNumber()));
fclose(f);
}
}