# HG changeset patch # User Michael Goffioul # Date 1202400415 -3600 # Node ID f79dcba526a840aac7699e9ba8fe55f8bae5eabc # Parent cb4838d70ab23a31999d0971f5a10f167ea2eced Export nested properties classes of all graphics object. diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,11 @@ 2008-06-04 Michael Goffioul + * graphics.h.in (class root_figure::properties, + class line::properties, class text::properties, + class image::properties, class patch::properties, + class surface::properties): Export classes with + OCTINTERP_API. + * graphics.cc (axes::properties::set_defaults): Use correct default values for gridlinestyle and minorgridlinestyle. diff --git a/src/graphics.h.in b/src/graphics.h.in --- a/src/graphics.h.in +++ b/src/graphics.h.in @@ -1986,7 +1986,7 @@ class OCTINTERP_API root_figure : public base_graphics_object { public: - class properties : public base_properties + class OCTINTERP_API properties : public base_properties { public: // See the genprops.awk script for an explanation of the @@ -2631,7 +2631,7 @@ class OCTINTERP_API line : public base_graphics_object { public: - class properties : public base_properties + class OCTINTERP_API properties : public base_properties { public: // See the genprops.awk script for an explanation of the @@ -2686,7 +2686,7 @@ class OCTINTERP_API text : public base_graphics_object { public: - class properties : public base_properties + class OCTINTERP_API properties : public base_properties { public: // See the genprops.awk script for an explanation of the @@ -2747,7 +2747,7 @@ class OCTINTERP_API image : public base_graphics_object { public: - class properties : public base_properties + class OCTINTERP_API properties : public base_properties { public: // See the genprops.awk script for an explanation of the @@ -2790,7 +2790,7 @@ class OCTINTERP_API patch : public base_graphics_object { public: - class properties : public base_properties + class OCTINTERP_API properties : public base_properties { public: // See the genprops.awk script for an explanation of the @@ -2863,7 +2863,7 @@ class OCTINTERP_API surface : public base_graphics_object { public: - class properties : public base_properties + class OCTINTERP_API properties : public base_properties { public: // See the genprops.awk script for an explanation of the