* 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
3 changed files with 20 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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 -->
|
||||
|
|
Loading…
Reference in a new issue