mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-05-12 02:22:17 +00:00
* api/gtk-api.xml:
* sources/Gtk.metadata: Mark 'out' param in GetSelectionBounds, thanks to Lee Mallabone for spotting that. svn path=/trunk/gtk-sharp/; revision=11584
This commit is contained in:
parent
2c3cae3be8
commit
bab803685d
|
@ -1,3 +1,9 @@
|
||||||
|
2003-02-14 Duncan Mak <duncan@ximian.com>
|
||||||
|
|
||||||
|
* api/gtk-api.xml:
|
||||||
|
* sources/Gtk.metadata: Mark 'out' param in GetSelectionBounds,
|
||||||
|
thanks to Lee Mallabone for spotting that.
|
||||||
|
|
||||||
2003-02-13 Mike Kestner <mkestner@speakeasy.net>
|
2003-02-13 Mike Kestner <mkestner@speakeasy.net>
|
||||||
|
|
||||||
* glib/Boxed.cs : fix a ctor bug reported to the list by
|
* glib/Boxed.cs : fix a ctor bug reported to the list by
|
||||||
|
|
|
@ -875,8 +875,8 @@
|
||||||
<method name="GetSelectionBounds" cname="gtk_editable_get_selection_bounds">
|
<method name="GetSelectionBounds" cname="gtk_editable_get_selection_bounds">
|
||||||
<return-type type="gboolean"/>
|
<return-type type="gboolean"/>
|
||||||
<parameters>
|
<parameters>
|
||||||
<parameter type="gint*" name="start"/>
|
<parameter type="gint*" name="start" pass_as="out"/>
|
||||||
<parameter type="gint*" name="end"/>
|
<parameter type="gint*" name="end" pass_as="out"/>
|
||||||
</parameters>
|
</parameters>
|
||||||
</method>
|
</method>
|
||||||
<method name="GetType" cname="gtk_editable_get_type" shared="true">
|
<method name="GetType" cname="gtk_editable_get_type" shared="true">
|
||||||
|
|
|
@ -254,6 +254,18 @@
|
||||||
</attribute>
|
</attribute>
|
||||||
</data>
|
</data>
|
||||||
</rule>
|
</rule>
|
||||||
|
<rule>
|
||||||
|
<class name="GtkEditable">
|
||||||
|
<method>GetSelectionBounds</method>
|
||||||
|
</class>
|
||||||
|
<data>
|
||||||
|
<attribute target="param">
|
||||||
|
<filter level="type">gint*</filter>
|
||||||
|
<name>pass_as</name>
|
||||||
|
<value>out</value>
|
||||||
|
</attribute>
|
||||||
|
</data>
|
||||||
|
</rule>
|
||||||
|
|
||||||
|
|
||||||
<!-- variable arguments -->
|
<!-- variable arguments -->
|
||||||
|
|
Loading…
Reference in a new issue