Merge branch 'master' of git://anongit.freedesktop.org/git/xcb/libxcb
This commit is contained in:
commit
2ec1383a68
|
@ -178,8 +178,9 @@
|
||||||
level GUI toolkit like Motif,
|
level GUI toolkit like Motif,
|
||||||
<a href="http://www.lesstif.org">LessTiff</a>,
|
<a href="http://www.lesstif.org">LessTiff</a>,
|
||||||
<a href="http://www.gtk.org">GTK</a>,
|
<a href="http://www.gtk.org">GTK</a>,
|
||||||
<a href="http://www.trolltech.com">QT</a> or
|
<a href="http://www.trolltech.com">QT</a>,
|
||||||
<a href="http://www.enlightenment.org">EWL</a>, or use
|
<a href="http://www.enlightenment.org">EWL</a>,
|
||||||
|
<a href="http://www.enlightenment.org">ETK</a>, or use
|
||||||
<a href="http://cairographics.org">Cairo</a>.
|
<a href="http://cairographics.org">Cairo</a>.
|
||||||
However,
|
However,
|
||||||
we need to start somewhere. More than this, knowing how things
|
we need to start somewhere. More than this, knowing how things
|
||||||
|
@ -2327,7 +2328,7 @@ int main ()
|
||||||
while (1) {
|
while (1) {
|
||||||
e = xcb_poll_for_event(c);
|
e = xcb_poll_for_event(c);
|
||||||
if (e) {
|
if (e) {
|
||||||
switch (e->response_type) {
|
switch (e->response_type & ~0x80) {
|
||||||
case XCB_EXPOSE: {
|
case XCB_EXPOSE: {
|
||||||
char *text;
|
char *text;
|
||||||
|
|
||||||
|
@ -3740,7 +3741,7 @@ int main ()
|
||||||
while (1) {
|
while (1) {
|
||||||
e = xcb_poll_for_event(c);
|
e = xcb_poll_for_event(c);
|
||||||
if (e) {
|
if (e) {
|
||||||
switch (e->response_type) {
|
switch (e->response_type & ~0x80) {
|
||||||
case XCB_EXPOSE: {
|
case XCB_EXPOSE: {
|
||||||
char *text;
|
char *text;
|
||||||
|
|
||||||
|
|
|
@ -449,6 +449,11 @@ authorization from the authors.
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:variable>
|
</xsl:variable>
|
||||||
|
<xsl:choose>
|
||||||
|
<xsl:when test="self::error|self::errorcopy">
|
||||||
|
<constant type="number" name="{xcb:xcb-prefix(concat('Bad', @name))}" value="{@number}" />
|
||||||
|
</xsl:when>
|
||||||
|
</xsl:choose>
|
||||||
<constant type="number" name="{xcb:xcb-prefix(@name)}" value="{@number}" />
|
<constant type="number" name="{xcb:xcb-prefix(@name)}" value="{@number}" />
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="self::event|self::error">
|
<xsl:when test="self::event|self::error">
|
||||||
|
|
Loading…
Reference in New Issue