2009-11-30 Mike Kestner <mkestner@novell.com>
* gtk/Widget.custom: add Path method overload. [Fixes #521360] svn path=/trunk/gtk-sharp/; revision=147114
This commit is contained in:
parent
536c3aca54
commit
629afad2d8
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2009-11-30 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
|
* gtk/Widget.custom: add Path method overload. [Fixes #521360]
|
||||||
|
|
||||||
2009-11-30 Mike Kestner <mkestner@novell.com>
|
2009-11-30 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
* generator/Method.cs: support win32_utf8_variant attribute on methods.
|
* generator/Method.cs: support win32_utf8_variant attribute on methods.
|
||||||
|
|
|
@ -454,3 +454,9 @@ public void ModifyText (Gtk.StateType state)
|
||||||
gtk_widget_modify_text (Handle, (int) state, IntPtr.Zero);
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue