* 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:
Duncan Mak 2003-02-14 19:17:10 +00:00
parent 2c3cae3be8
commit bab803685d
3 changed files with 20 additions and 2 deletions

View File

@ -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>
* glib/Boxed.cs : fix a ctor bug reported to the list by

View File

@ -875,8 +875,8 @@
<method name="GetSelectionBounds" cname="gtk_editable_get_selection_bounds">
<return-type type="gboolean"/>
<parameters>
<parameter type="gint*" name="start"/>
<parameter type="gint*" name="end"/>
<parameter type="gint*" name="start" pass_as="out"/>
<parameter type="gint*" name="end" pass_as="out"/>
</parameters>
</method>
<method name="GetType" cname="gtk_editable_get_type" shared="true">

View File

@ -254,6 +254,18 @@
</attribute>
</data>
</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 -->