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:
Mike Kestner 2003-10-07 19:28:40 +00:00
parent 9eeca84abe
commit ec59bb6398
3 changed files with 8 additions and 2 deletions

View File

@ -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.

View File

@ -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"/>

View File

@ -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/) {