summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Linhart <chris@demorecorder.com>2014-09-04 10:53:19 +0200
committerChristian Linhart <chris@demorecorder.com>2014-11-03 11:23:22 +0100
commit2b54d78b66808646db0401809e7061dd35f26aa7 (patch)
treeff131f9b289e07e526a72158ef7f7d872e0c9201
parente184abaad4a08ddb9f6f00a3c357a0c651236933 (diff)
xinput: rep GetDeviceProperty: replace bitcase with case
Message-ID: <1409820801-43629-8-git-send-email-chris@demorecorder.com> Patch-Thread-Subject: [Xcb] xinput: xml-fixes possible with new generator features Patch-Set: XmlFixesNewGenerator Patch-Number: proto 08/10 Patch-Version: V1 Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
-rw-r--r--src/xinput.xml16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/xinput.xml b/src/xinput.xml
index 38bde51..d350753 100644
--- a/src/xinput.xml
+++ b/src/xinput.xml
@@ -1369,30 +1369,26 @@ in struct DeviceTimeCoord.
<pad bytes="10" />
<switch name="items">
<fieldref>format</fieldref>
- <!-- <bitcase> is not correct, this would need <cases>s.
- It works in that case, because PropertyFormat items can be
- distinguished exactly as their values don't have equal bits.
- -->
- <bitcase>
+ <case>
<enumref ref="PropertyFormat">8Bits</enumref>
<list type="CARD8" name="data8">
<fieldref>num_items</fieldref>
</list>
<pad align="4" />
- </bitcase>
- <bitcase>
+ </case>
+ <case>
<enumref ref="PropertyFormat">16Bits</enumref>
<list type="CARD16" name="data16">
<fieldref>num_items</fieldref>
</list>
<pad align="4" />
- </bitcase>
- <bitcase>
+ </case>
+ <case>
<enumref ref="PropertyFormat">32Bits</enumref>
<list type="CARD32" name="data32">
<fieldref>num_items</fieldref>
</list>
- </bitcase>
+ </case>
</switch>
</reply>
</request>