From b08ca2b4b451a94ece20207766cd5262fd55179b Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Mon, 18 Sep 2006 16:52:00 -0700 Subject: [PATCH] XCB*Id is a variable, not a type: adjust API conventions accordingly. --- tools/api_conv.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" . $_; } -- 2.34.1