[Xcb-commit] 2 commits - doc
Vincent Torri
doursse at kemper.freedesktop.org
Thu Apr 12 06:49:19 PDT 2007
doc/tutorial/index.html | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
New commits:
diff-tree f7279d8c8ae33d6e3029e85b14ed8495d3b00e30 (from parents)
Merge: 0925e470b2abf8837c62e81428660a01bbb990fa eaa380efefd347abcd11a6c24c008686beaf8257
Author: TORRI Vincent <torri at alf94-3-82-66-248-160.fbx.proxad.net>
Date: Thu Apr 12 15:48:44 2007 +0200
Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb/libxcb
diff-tree 0925e470b2abf8837c62e81428660a01bbb990fa (from 4a60950b7433eb41e08cb0c74dc8ced8f92fd78a)
Author: TORRI Vincent <torri at alf94-3-82-66-248-160.fbx.proxad.net>
Date: Thu Apr 12 15:46:05 2007 +0200
remove the 7th bit of the response_type for the event loops
diff --git a/doc/tutorial/index.html b/doc/tutorial/index.html
index 75e1f75..c540426 100644
--- a/doc/tutorial/index.html
+++ b/doc/tutorial/index.html
@@ -178,8 +178,9 @@
level GUI toolkit like Motif,
<a href="http://www.lesstif.org">LessTiff</a>,
<a href="http://www.gtk.org">GTK</a>,
- <a href="http://www.trolltech.com">QT</a> or
- <a href="http://www.enlightenment.org">EWL</a>, or use
+ <a href="http://www.trolltech.com">QT</a>,
+ <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>.
However,
we need to start somewhere. More than this, knowing how things
@@ -2327,7 +2328,7 @@ int main ()
while (1) {
e = xcb_poll_for_event(c);
if (e) {
- switch (e->response_type) {
+ switch (e->response_type & ~0x80) {
case XCB_EXPOSE: {
char *text;
@@ -3740,7 +3741,7 @@ int main ()
while (1) {
e = xcb_poll_for_event(c);
if (e) {
- switch (e->response_type) {
+ switch (e->response_type & ~0x80) {
case XCB_EXPOSE: {
char *text;
More information about the xcb-commit
mailing list