[Kde-bindings] KDE/kdebindings/kalyptus

Richard Dale Richard_Dale at tipitina.demon.co.uk
Fri Mar 27 18:13:34 UTC 2009


SVN commit 945569 by rdale:

* Fixed a couple of minor bugs in the smoke code generation. Comma seperated
lists within template angled brackets wrongly had spaces after the commas.
When generating a static variable node in the AST, the 'static' string wasn't
being removed.

CCMAIL: kde-bindings at kde.org


 M  +1 -1      kalyptus  
 M  +1 -1      kalyptusDataDict.pm  


--- trunk/KDE/kdebindings/kalyptus/kalyptus #945568:945569
@@ -1813,7 +1813,7 @@
 
 	my $static = 0;
 	if ( $type =~ /static/ ) {
-	#	$type =~ s/static//;
+		$type =~ s/static\s+//;
 		$static = 1;
 	}
 
--- trunk/KDE/kdebindings/kalyptus/kalyptusDataDict.pm #945568:945569
@@ -2968,7 +2968,7 @@
 		$i++;
             }
             # normalize
-	    $argType = $before."<".join( ", ", @args).">".$after;
+	    $argType = $before."<".join( ",", @args).">".$after;
 		$argType =~ s/>>/> >/g;  # Nested template types must have a space
         }
 



More information about the Kde-bindings mailing list