Skip to content
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.

Commit

Permalink
2007-08-13 Mike Kestner <mkestner@novell.com>
Browse files Browse the repository at this point in the history
	* gnome/CanvasPathDef.custom : adapt to generated pinvoke sig change.

svn path=/trunk/gnome-sharp/; revision=83962
  • Loading branch information
mkestner committed Aug 13, 2007
1 parent 8ec8d47 commit 4274c2e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2007-08-13 Mike Kestner <mkestner@novell.com>

* gnome/CanvasPathDef.custom : adapt to generated pinvoke sig change.

2007-07-27 Mike Kestner <mkestner@novell.com>

* configure.in.in : add blurb about the gnome-sharp.dll requirements
Expand Down
5 changes: 4 additions & 1 deletion gnome/CanvasPathDef.custom
Expand Up @@ -21,6 +21,9 @@

public static CanvasPathDef NewFromBpath (Art.Bpath bpath)
{
return new CanvasPathDef (gnome_canvas_path_def_new_from_bpath (ref bpath));
IntPtr native_bpath = GLib.Marshaller.StructureToPtrAlloc (bpath);
CanvasPathDef result = new CanvasPathDef (gnome_canvas_path_def_new_from_bpath (native_bpath));
GLib.Marshaller.Free (native_bpath);
return result;
}

0 comments on commit 4274c2e

Please sign in to comment.