aboutsummaryrefslogtreecommitdiff
path: root/libxcb
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2012-03-26 14:34:38 +0200
committermarha <marha@users.sourceforge.net>2012-03-26 14:34:38 +0200
commit1d6d472342aee7b9c68e9f1d92762ef808d35ac2 (patch)
tree49700f649b4f4fedb3346ea7c58776925be11990 /libxcb
parent0f834b91a4768673833ab4917e87d86c237bb1a6 (diff)
downloadvcxsrv-1d6d472342aee7b9c68e9f1d92762ef808d35ac2.tar.gz
vcxsrv-1d6d472342aee7b9c68e9f1d92762ef808d35ac2.tar.bz2
vcxsrv-1d6d472342aee7b9c68e9f1d92762ef808d35ac2.zip
fontconfig libxcb mesa xkeyboard-config git update 26 Mar 2012
Diffstat (limited to 'libxcb')
-rw-r--r--libxcb/xcb-proto/NEWS6
-rw-r--r--libxcb/xcb-proto/configure.ac2
-rw-r--r--libxcb/xcb-proto/xcbgen/xtypes.py4
3 files changed, 9 insertions, 3 deletions
diff --git a/libxcb/xcb-proto/NEWS b/libxcb/xcb-proto/NEWS
index 32bcc6924..3e50762ab 100644
--- a/libxcb/xcb-proto/NEWS
+++ b/libxcb/xcb-proto/NEWS
@@ -1,3 +1,9 @@
+Release 1.7.1 (2012-03-23)
+==========================
+* Add ge and xf86vidmode protocol descriptions
+* Remove now unnecessary files as everything is implemented in xcbgen
+* Rename the ExprType "parent" attribute to "parents"
+
Release 1.7 (2012-01-11)
========================
* Add missing padding bytes to ChangeKeyboardMapping request
diff --git a/libxcb/xcb-proto/configure.ac b/libxcb/xcb-proto/configure.ac
index 5368e2a05..e20c9aa1e 100644
--- a/libxcb/xcb-proto/configure.ac
+++ b/libxcb/xcb-proto/configure.ac
@@ -3,7 +3,7 @@
AC_PREREQ(2.57)
AC_INIT([XCB Proto],
- 1.7,
+ 1.7.1,
[xcb@lists.freedesktop.org])
AC_CONFIG_SRCDIR([xcb-proto.pc.in])
AM_INIT_AUTOMAKE([foreign dist-bzip2])
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)