[at-spi2-core] Fix case of property names in xml



commit 79de03c0e3d56e2142b8ea5ca0837291ec216d81
Author: Mike Gorse <mgorse novell com>
Date:   Wed Feb 9 09:50:38 2011 -0600

    Fix case of property names in xml

 xml/Accessible.xml  |    8 ++++----
 xml/Action.xml      |    2 +-
 xml/Application.xml |    6 +++---
 xml/Hyperlink.xml   |    6 +++---
 xml/Image.xml       |    4 ++--
 xml/Selection.xml   |    2 +-
 xml/Table.xml       |   12 ++++++------
 xml/Text.xml        |    4 ++--
 xml/Value.xml       |    8 ++++----
 9 files changed, 26 insertions(+), 26 deletions(-)
---
diff --git a/xml/Accessible.xml b/xml/Accessible.xml
index 743255c..dabbd4e 100644
--- a/xml/Accessible.xml
+++ b/xml/Accessible.xml
@@ -2,15 +2,15 @@
 <node name="/node">
 <interface name="org.a11y.atspi.Accessible">
 
-  <property name="name" type="s" access="read"/>
+  <property name="Name" type="s" access="read"/>
 
-  <property name="description" type="s" access="read"/>
+  <property name="Description" type="s" access="read"/>
 
-  <property name="parent" type="(so)" access="read">
+  <property name="Parent" type="(so)" access="read">
     <annotation name="com.trolltech.QtDBus.QtTypeName" value="QSpiObjectReference"/>
   </property>
 
-  <property name="childCount" type="i" access="read"/>
+  <property name="ChildCount" type="i" access="read"/>
 
   <method name="GetChildAtIndex">
     <arg direction="in" name="index" type="i"/>
diff --git a/xml/Action.xml b/xml/Action.xml
index eca978c..9c0eef5 100644
--- a/xml/Action.xml
+++ b/xml/Action.xml
@@ -2,7 +2,7 @@
 <node name="/node">
 <interface name="org.a11y.atspi.Action">
 
-  <property name="nActions" type="i" access="read"/>
+  <property name="NActions" type="i" access="read"/>
 
   <method name="GetDescription">
     <arg type="i" name="index" direction="in"/>
diff --git a/xml/Application.xml b/xml/Application.xml
index 674a49d..0fbb92b 100644
--- a/xml/Application.xml
+++ b/xml/Application.xml
@@ -2,11 +2,11 @@
 <node name="/node">
 <interface name="org.a11y.atspi.Application">
 
-  <property name="toolkitName" type="s" access="read"/>
+  <property name="ToolkitName" type="s" access="read"/>
 
-  <property name="version" type="s" access="read"/>
+  <property name="Version" type="s" access="read"/>
 
-  <property name="id" type="i" access="read"/>
+  <property name="Id" type="i" access="read"/>
 
   <method name="GetLocale">
     <arg direction="in" name="lctype" type="u"/>
diff --git a/xml/Hyperlink.xml b/xml/Hyperlink.xml
index d306894..75f8099 100644
--- a/xml/Hyperlink.xml
+++ b/xml/Hyperlink.xml
@@ -2,11 +2,11 @@
 <node name="/node">
 <interface name="org.a11y.atspi.Hyperlink">
 
-  <property name="nAnchors" type="n" access="read"/>
+  <property name="NAnchors" type="n" access="read"/>
 
-  <property name="startIndex" type="i" access="read"/>
+  <property name="StartIndex" type="i" access="read"/>
 
-  <property name="endIndex" type="i" access="read"/>
+  <property name="EndIndex" type="i" access="read"/>
 
   <method name="GetObject">
     <arg direction="in" name="i" type="i"/>
diff --git a/xml/Image.xml b/xml/Image.xml
index 80fd448..43536ee 100644
--- a/xml/Image.xml
+++ b/xml/Image.xml
@@ -2,9 +2,9 @@
 <node name="/node">
 <interface name="org.a11y.atspi.Image">
 
-  <property name="imageDescription" type="s" access="read"/>
+  <property name="ImageDescription" type="s" access="read"/>
 
-  <property name="imageLocale" type="s" access="read"/>
+  <property name="ImageLocale" type="s" access="read"/>
 
   <method name="GetImageExtents">
     <arg direction="in" name="coordType" type="u"/>
diff --git a/xml/Selection.xml b/xml/Selection.xml
index 32e55b8..2c36185 100644
--- a/xml/Selection.xml
+++ b/xml/Selection.xml
@@ -2,7 +2,7 @@
 <node name="/node">
 <interface name="org.a11y.atspi.Selection">
 
-  <property name="nSelectedChildren" type="i" access="read"/>
+  <property name="NSelectedChildren" type="i" access="read"/>
 
   <method name="GetSelectedChild">
     <arg direction="in" name="selectedChildIndex" type="i"/>
diff --git a/xml/Table.xml b/xml/Table.xml
index b27df82..181acaa 100644
--- a/xml/Table.xml
+++ b/xml/Table.xml
@@ -2,21 +2,21 @@
 <node name="/node">
 <interface name="org.a11y.atspi.Table">
 
-  <property name="nRows" type="i" access="read"/>
+  <property name="NRows" type="i" access="read"/>
 
-  <property name="nColumns" type="i" access="read"/>
+  <property name="NColumns" type="i" access="read"/>
 
-  <property name="caption" type="(so)" access="read">
+  <property name="Caption" type="(so)" access="read">
     <annotation name="com.trolltech.QtDBus.QtTypeName" value="QSpiObjectReference"/>
   </property>
 
-  <property name="summary" type="(so)" access="read">
+  <property name="Summary" type="(so)" access="read">
     <annotation name="com.trolltech.QtDBus.QtTypeName" value="QSpiObjectReference"/>
   </property>
 
-  <property name="nSelectedRows" type="i" access="read"/>
+  <property name="NSelectedRows" type="i" access="read"/>
 
-  <property name="nSelectedColumns" type="i" access="read"/>
+  <property name="NSelectedColumns" type="i" access="read"/>
 
   <method name="GetAccessibleAt">
     <arg direction="in" name="row" type="i"/>
diff --git a/xml/Text.xml b/xml/Text.xml
index a88fbe3..6620864 100644
--- a/xml/Text.xml
+++ b/xml/Text.xml
@@ -2,9 +2,9 @@
 <node name="/node">
 <interface name="org.a11y.atspi.Text">
 
-  <property name="characterCount" type="i" access="read"/>
+  <property name="CharacterCount" type="i" access="read"/>
 
-  <property name="caretOffset" type="i" access="read"/>
+  <property name="CaretOffset" type="i" access="read"/>
 
   <method name="GetText">
     <arg direction="in" name="startOffset" type="i"/>
diff --git a/xml/Value.xml b/xml/Value.xml
index aa097cf..ccd6c7a 100644
--- a/xml/Value.xml
+++ b/xml/Value.xml
@@ -2,13 +2,13 @@
 <node name="/node">
 <interface name="org.a11y.atspi.Value">
 
-        <property name="minimumValue" type="d" access="read"/>
+        <property name="MinimumValue" type="d" access="read"/>
 
-        <property name="maximumValue" type="d" access="read"/>
+        <property name="MaximumValue" type="d" access="read"/>
 
-        <property name="minimumIncrement" type="d" access="read"/>
+        <property name="MinimumIncrement" type="d" access="read"/>
 
-        <property name="currentValue" type="d" access="readwrite"/>
+        <property name="CurrentValue" type="d" access="readwrite"/>
 
 </interface>
 </node>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]