diff options
author | Jamey Sharp <jamey@minilop.net> | 2006-09-18 16:52:00 -0700 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2006-09-18 16:52:00 -0700 |
commit | b08ca2b4b451a94ece20207766cd5262fd55179b (patch) | |
tree | a7e6f8e9a345fb8620b8638d6e53261a4ac4f168 /tools | |
parent | 3cc0ddf0e6b72ba553ebfc2b9126d62ef4013bd3 (diff) |
XCB*Id is a variable, not a type: adjust API conventions accordingly.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/api_conv.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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" . $_; } |