diff options
author | marha <marha@users.sourceforge.net> | 2012-03-26 14:34:38 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-03-26 14:34:38 +0200 |
commit | 1d6d472342aee7b9c68e9f1d92762ef808d35ac2 (patch) | |
tree | 49700f649b4f4fedb3346ea7c58776925be11990 /libxcb/xcb-proto/xcbgen | |
parent | 0f834b91a4768673833ab4917e87d86c237bb1a6 (diff) | |
download | vcxsrv-1d6d472342aee7b9c68e9f1d92762ef808d35ac2.tar.gz vcxsrv-1d6d472342aee7b9c68e9f1d92762ef808d35ac2.tar.bz2 vcxsrv-1d6d472342aee7b9c68e9f1d92762ef808d35ac2.zip |
fontconfig libxcb mesa xkeyboard-config git update 26 Mar 2012
Diffstat (limited to 'libxcb/xcb-proto/xcbgen')
-rw-r--r-- | libxcb/xcb-proto/xcbgen/xtypes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libxcb/xcb-proto/xcbgen/xtypes.py b/libxcb/xcb-proto/xcbgen/xtypes.py index 14c318ac3..c78915846 100644 --- a/libxcb/xcb-proto/xcbgen/xtypes.py +++ b/libxcb/xcb-proto/xcbgen/xtypes.py @@ -221,11 +221,11 @@ class ExprType(Type): Public fields added: expr is an Expression object containing the value of the field. ''' - def __init__(self, elt, member, *parent): + def __init__(self, elt, member, *parents): Type.__init__(self, member.name) self.is_expr = True self.member = member - self.parent = parent + self.parents = parents self.expr = Expression(list(elt)[0], self) |