mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 09:25:30 +00:00
2008-06-28 Mike Kestner <mkestner@novell.com>
* gtk/Gtk.metadata: mark ListStore.Reorder array param. * gtk/ListStore.cs: compat obsolete method, though the old one was useless. svn path=/trunk/gtk-sharp/; revision=106853
This commit is contained in:
parent
51454acbb7
commit
d47afc7f66
|
@ -1,3 +1,9 @@
|
|||
2008-06-28 Mike Kestner <mkestner@novell.com>
|
||||
|
||||
* gtk/Gtk.metadata: mark ListStore.Reorder array param.
|
||||
* gtk/ListStore.cs: compat obsolete method, though the old one
|
||||
was useless.
|
||||
|
||||
2008-06-28 Mike Kestner <mkestner@novell.com>
|
||||
|
||||
* glib/Marshaller.cs: some 64 bit fixes for time_t marshaling
|
||||
|
|
|
@ -465,6 +465,7 @@
|
|||
<attr path="/api/namespace/object[@cname='GtkListStore']/method[@name='InsertWithValuesv']" name="deprecated">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkListStore']/method[@name='Prepend']/*/*[@name='iter']" name="pass_as">out</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkListStore']/method[@name='Remove']/*/*[@name='iter']" name="pass_as">ref</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkListStore']/method[@name='Reorder']/*/*[@name='new_order']" name="array">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkListStore']/method[@name='Set']" name="hidden">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkListStore']/method[@name='SetColumnTypes']/*/*[@name='types']" name="array">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkListStore']/method[@name='SetValuesv']" name="hidden">1</attr>
|
||||
|
|
|
@ -21,6 +21,12 @@
|
|||
// Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
[Obsolete ("Replaced by Reorder (int[]) overload")]
|
||||
public int Reorder ()
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
[DllImport("libgtk-win32-2.0-0.dll")]
|
||||
static extern bool gtk_tree_model_iter_children (IntPtr raw, out Gtk.TreeIter iter, IntPtr parent);
|
||||
public bool IterChildren (out Gtk.TreeIter iter)
|
||||
|
|
Loading…
Reference in a new issue