mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-22 20:50:57 +00:00
2003-10-07 Mike Kestner <mkestner@ximian.com>
* parser/gapi2xml.pl : look for ");" at the end of property declarations to avoid problems with ';' in property docstrings. * api/gtk-api.xml : regenerated. [Fixes #47987] svn path=/trunk/gtk-sharp/; revision=18715
This commit is contained in:
parent
9eeca84abe
commit
ec59bb6398
|
@ -1,3 +1,9 @@
|
|||
2003-10-07 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* parser/gapi2xml.pl : look for ");" at the end of property
|
||||
declarations to avoid problems with ';' in property docstrings.
|
||||
* api/gtk-api.xml : regenerated. [Fixes #47987]
|
||||
|
||||
2003-10-07 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* glib/ListBase.cs : assume ref_owned=false for GObject lists.
|
||||
|
|
|
@ -6967,7 +6967,7 @@
|
|||
<property name="Family" cname="family" type="gchar*" readable="true" writeable="true"/>
|
||||
<property name="Style" cname="style" type="PangoStyle" readable="true" writeable="true"/>
|
||||
<property name="Variant" cname="variant" type="PangoVariant" readable="true" writeable="true"/>
|
||||
<property name="" cname="" type=""/>
|
||||
<property name="Weight" cname="weight" type="PangoWeight" readable="true" writeable="true"/>
|
||||
<property name="Stretch" cname="stretch" type="PangoStretch" readable="true" writeable="true"/>
|
||||
<property name="Size" cname="size" type="gint" readable="true" writeable="true"/>
|
||||
<property name="Scale" cname="scale" type="gdouble" readable="true" writeable="true"/>
|
||||
|
|
|
@ -817,7 +817,7 @@ sub parseInitFunc
|
|||
my $prop = $line;
|
||||
do {
|
||||
$prop .= $init_lines[++$linenum];
|
||||
} until ($init_lines[$linenum] =~ /;/);
|
||||
} until ($init_lines[$linenum] =~ /\)\s*;/);
|
||||
addPropElem ($prop, $obj_el);
|
||||
$propcnt++;
|
||||
} elsif ($line =~ /g(tk)?_signal_new/) {
|
||||
|
|
Loading…
Reference in a new issue