summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamey Sharp <jamey@minilop.net>2006-10-06 23:32:18 -0700
committerJamey Sharp <jamey@minilop.net>2006-10-06 23:32:32 -0700
commit7b786bd8f34e67617beda4f952a5a636a370396a (patch)
tree7f621a43d5723650082a81c40378b1980173c508
parentc73ff37b907c8af6d03ab69cca27bc837c1cc189 (diff)
api_conv.pl: replace xcb_*_new with calls directly to xcb_generate_id, now that we have no type-safety XID wrappers.
-rwxr-xr-xtools/api_conv.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/api_conv.pl b/tools/api_conv.pl
index 003a893..83fd82d 100755
--- a/tools/api_conv.pl
+++ b/tools/api_conv.pl
@@ -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;