diff options
author | Ian Osgood <iano@quirkster.com> | 2006-10-20 07:38:55 -0700 |
---|---|---|
committer | Ian Osgood <iano@quirkster.com> | 2006-10-20 07:41:42 -0700 |
commit | c10a77848f9318856129161be08a05379ffb39de (patch) | |
tree | 091de4f9fd8c1f40d153a034beb2bd09b375dba1 | |
parent | b3423e67845cb6f2b858fb3f22295a5ef79821fb (diff) |
Fix GrabMode enumeration (reported by Yang JianJun)
-rw-r--r-- | src/xproto.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xproto.xml b/src/xproto.xml index 7fcbc2f..7f30694 100644 --- a/src/xproto.xml +++ b/src/xproto.xml @@ -988,8 +988,8 @@ authorization from the authors. </request> <enum name="GrabMode"> - <item name="Async"><value>0</value></item> - <item name="Sync"> <value>1</value></item> + <item name="Sync"> <value>0</value></item> + <item name="Async"><value>1</value></item> </enum> <enum name="GrabStatus"> |