From 629afad2d8ed4c2417e2ce2fffa0dbbb83f2bf4f Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Mon, 30 Nov 2009 17:49:04 +0000 Subject: [PATCH] 2009-11-30 Mike Kestner * gtk/Widget.custom: add Path method overload. [Fixes #521360] svn path=/trunk/gtk-sharp/; revision=147114 --- ChangeLog | 4 ++++ gtk/Widget.custom | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index daf484ce7..8a564e9bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-11-30 Mike Kestner + + * gtk/Widget.custom: add Path method overload. [Fixes #521360] + 2009-11-30 Mike Kestner * generator/Method.cs: support win32_utf8_variant attribute on methods. diff --git a/gtk/Widget.custom b/gtk/Widget.custom index b86ec5969..e2433bcf6 100644 --- a/gtk/Widget.custom +++ b/gtk/Widget.custom @@ -454,3 +454,9 @@ public void ModifyText (Gtk.StateType state) gtk_widget_modify_text (Handle, (int) state, IntPtr.Zero); } +public void Path (out string path, out string path_reversed) +{ + uint len; + Path (out len, out path, out path_reversed); +} +