diff --git a/ChangeLog b/ChangeLog index 614ecba75..de9539b30 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-06-27 Mike Kestner + + * gnome/CanvasBpath.custom : a BPath property to wrap the ugly Bpath + IntPtr prop. [Fixes #75381] + 2005-06-24 Mike Kestner * atk/Atk.metadata : couple of small api cleanups. diff --git a/doc/en/Gnome/CanvasBpath.xml b/doc/en/Gnome/CanvasBpath.xml index 3df742629..3d6d5f47d 100644 --- a/doc/en/Gnome/CanvasBpath.xml +++ b/doc/en/Gnome/CanvasBpath.xml @@ -118,5 +118,17 @@ To be added + + + Property + + Gnome.CanvasPathDef + + + The Path definition for this shape. + a describing the shape. + + + diff --git a/gnome/CanvasBpath.custom b/gnome/CanvasBpath.custom index 52ed7f0a9..204ff6f25 100644 --- a/gnome/CanvasBpath.custom +++ b/gnome/CanvasBpath.custom @@ -24,3 +24,11 @@ public CanvasBpath (Gnome.CanvasGroup group) : base (group, GType) { } +public CanvasPathDef BPath { + get { + return new CanvasPathDef (Bpath); + } + set { + Bpath = value.Handle; + } +}