api_conv.pl: replace xcb_*_new with calls directly to xcb_generate_id, now that we...
authorJamey Sharp <jamey@minilop.net>
Sat, 7 Oct 2006 06:32:18 +0000 (23:32 -0700)
committerJamey Sharp <jamey@minilop.net>
Sat, 7 Oct 2006 06:32:32 +0000 (23:32 -0700)
tools/api_conv.pl

index 003a893..83fd82d 100755 (executable)
@@ -95,3 +95,4 @@ sub convert($$)
 
 s/^(\s*#\s*include\s*<)X11\/XCB\//$1xcb\//;
 s/([_A-Za-z][_A-Za-z0-9]*)([ \t]*\()?/convert($1, defined $2) . ($2 or "")/eg;
+s/xcb_[a-z0-9_]*_new/xcb_generate_id/g;