/[public]/psiconv/trunk/lib/psiconv/data.c
ViewVC logotype

Diff of /psiconv/trunk/lib/psiconv/data.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 142 Revision 167
442{ 442{
443 if (styles) { 443 if (styles) {
444 psiconv_free_word_style(styles->normal); 444 psiconv_free_word_style(styles->normal);
445 if (styles->styles) 445 if (styles->styles)
446 psiconv_list_free_el(styles->styles,psiconv_free_style_aux); 446 psiconv_list_free_el(styles->styles,psiconv_free_style_aux);
447 free(styles);
447 } 448 }
448} 449}
449 450
450void psiconv_free_header_section(psiconv_header_section header) 451void psiconv_free_header_section(psiconv_header_section header)
451{ 452{
472 free(section->name); 473 free(section->name);
473 free(section); 474 free(section);
474 } 475 }
475} 476}
476 477
478void psiconv_free_object_icon_section(psiconv_object_icon_section section)
479{
480 if (section) {
481 if (section->icon_name)
482 free(section->icon_name);
483 free(section);
484 }
485}
486
487void psiconv_free_object_display_section(psiconv_object_display_section section)
488{
489 if (section)
490 free(section);
491}
492
493void psiconv_free_embedded_object_section
494 (psiconv_embedded_object_section object)
495{
496 if (object) {
497 psiconv_free_object_icon_section(object->icon);
498 psiconv_free_object_display_section(object->display);
499 psiconv_free_file(object->object);
500 free(object);
501 }
502}
503
477void psiconv_free_in_line_layout_aux(void * layout) 504void psiconv_free_in_line_layout_aux(void * layout)
478{ 505{
479 psiconv_free_character_layout(((psiconv_in_line_layout) layout)->layout); 506 psiconv_free_character_layout(((psiconv_in_line_layout) layout)->layout);
507 psiconv_free_embedded_object_section
508 (((psiconv_in_line_layout) layout)->object);
480} 509}
481 510
482void psiconv_free_in_line_layout(psiconv_in_line_layout layout) 511void psiconv_free_in_line_layout(psiconv_in_line_layout layout)
483{ 512{
484 if (layout) { 513 if (layout) {
1314psiconv_sketch_section psiconv_empty_sketch_section(void) 1343psiconv_sketch_section psiconv_empty_sketch_section(void)
1315{ 1344{
1316 psiconv_sketch_section result; 1345 psiconv_sketch_section result;
1317 if (!(result = malloc(sizeof(*result)))) 1346 if (!(result = malloc(sizeof(*result))))
1318 goto ERROR1; 1347 goto ERROR1;
1319 result->form_xsize = 320; 1348 result->displayed_xsize = 320;
1320 result->form_ysize = 200; 1349 result->displayed_ysize = 200;
1321 result->picture_x_offset = result->picture_y_offset = result->picture_xsize = 1350 result->picture_data_x_offset = result->picture_data_y_offset =
1322 result->picture_ysize = 0; 1351 result->form_xsize = result->form_ysize =
1352 result->displayed_size_x_offset = result->displayed_size_y_offset = 0;
1323 result->magnification_x = result->magnification_y = 1.0; 1353 result->magnification_x = result->magnification_y = 1.0;
1324 result->cut_left = result->cut_right = result->cut_top = 1354 result->cut_left = result->cut_right = result->cut_top =
1325 result->cut_bottom = 0.0; 1355 result->cut_bottom = 0.0;
1326 if (!(result->picture = psiconv_empty_paint_data_section())) 1356 if (!(result->picture = psiconv_empty_paint_data_section()))
1327 goto ERROR2; 1357 goto ERROR2;

Legend:
Removed from v.142  
changed lines
  Added in v.167

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26