mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-23 06:51:06 +00:00
2005-08-22 Joe Shaw <joeshaw@novell.com>
* parser/gapi2xml.pl: Fix a minor bug handling "type const *" parameters. svn path=/trunk/gtk-sharp/; revision=48704
This commit is contained in:
parent
3e62a2a636
commit
6018f119d3
|
@ -1,3 +1,8 @@
|
|||
2005-08-22 Joe Shaw <joeshaw@novell.com>
|
||||
|
||||
* parser/gapi2xml.pl: Fix a minor bug handling "type const *"
|
||||
parameters.
|
||||
|
||||
2005-08-22 Ben Maurer <bmaurer@novell.com>
|
||||
|
||||
* gtk/TreeNode.cs: Add Interlocked.Increment rather than ++. This
|
||||
|
|
|
@ -789,7 +789,7 @@ sub addParamsElem
|
|||
my $out = $parm =~ s/G_CONST_RETURN/const/g;
|
||||
$parm =~ s/(const\s+)?(\w+)\*\s+const\*/const \2\*/g;
|
||||
$parm =~ s/(\*+)\s*const\s+/\1 /g;
|
||||
$parm =~ s/(\w+)\s+const\s+\*/const \1 */g;
|
||||
$parm =~ s/(\w+)\s+const\s*\*/const \1\*/g;
|
||||
$parm =~ s/const\s+/const-/g;
|
||||
$parm =~ s/unsigned\s+/unsigned-/g;
|
||||
if ($parm =~ /(.*)\(\s*\**\s*(\w+)\)\s+\((.*)\)/) {
|
||||
|
|
Loading…
Reference in a new issue