From: Jamey Sharp Date: Mon, 18 Sep 2006 23:52:00 +0000 (-0700) Subject: XCB*Id is a variable, not a type: adjust API conventions accordingly. X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b08ca2b4b451a94ece20207766cd5262fd55179b;hp=3cc0ddf0e6b72ba553ebfc2b9126d62ef4013bd3;p=free-sw%2Fxcb%2Flibxcb XCB*Id is a variable, not a type: adjust API conventions accordingly. --- diff --git a/tools/api_conv.pl b/tools/api_conv.pl index 2e6a1d0..a780ac3 100755 --- a/tools/api_conv.pl +++ b/tools/api_conv.pl @@ -42,7 +42,7 @@ sub convert($$) return "XCB" . uc($_) if $const; - $_ .= "_t" unless $fun; + $_ .= "_t" unless $fun or /_id$/; return "xcb" . $_; }