jan_flanders

Untitled

Dec 15th, 2012
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
OCaml 0.52 KB | None | 0 0
  1. type shape_with_style = {
  2.     sws_fill_styles : shape_fill_style list;
  3.     sws_line_styles : shape_line_style list;
  4.     sws_records : shape_records;
  5. }
  6. type shape = {
  7.     mutable sh_id : int;
  8.     sh_bounds : rect;
  9.     sh_bounds2 : (rect * int) option;
  10.     sh_style : shape_with_style;
  11. }
  12.  
  13. Should be:
  14.  
  15. type shape_without_style = {
  16.     sws_line_styles : shape_line_style list;
  17.     sws_records : shape_records;
  18. }
  19. type shape = {
  20.     mutable sh_id : int;
  21.     sh_bounds : rect;
  22.     sh_bounds2 : (rect * int) option;
  23.     sh_style : shape_without_style;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment