summaryrefslogtreecommitdiff
path: root/atk/atkutil.c
diff options
context:
space:
mode:
authorAlejandro Piñeiro <apinheiro@igalia.com>2014-03-05 18:32:42 +0100
committerAlejandro Piñeiro <apinheiro@igalia.com>2014-03-05 19:02:14 +0100
commit98838b2af5c88326225041024bfc49e0f4e6fd1e (patch)
treef267c824c60ea04bc64455feb61d72074cf564cd /atk/atkutil.c
parent7149d9b6a5d151faed04d0f0f7d46ef915bd6573 (diff)
downloadatk-98838b2af5c88326225041024bfc49e0f4e6fd1e.tar.gz
AtkValue: refactoring AtkValue
In summary: * Stop to use GValue to get/set the value and use doubles instead * Include the support for a string description and subranges https://bugzilla.gnome.org/show_bug.cgi?id=684576
Diffstat (limited to 'atk/atkutil.c')
-rwxr-xr-xatk/atkutil.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/atk/atkutil.c b/atk/atkutil.c
index 058fc6d..f19e334 100755
--- a/atk/atkutil.c
+++ b/atk/atkutil.c
@@ -353,11 +353,11 @@ atk_util_real_remove_global_event_listener (guint remove_listener)
* when an ATK event of type event_type occurs.
*
* The format of event_type is the following:
- * "ATK:<atk_type>:<atk_event>:<atk_event_detail>
+ * "ATK:&lt;atk_type&gt;:&lt;atk_event&gt;:&lt;atk_event_detail&gt;
*
- * Where "ATK" works as the namespace, <atk_interface> is the name of
- * the ATK type (interface or object), <atk_event> is the name of the
- * signal defined on that interface and <atk_event_detail> is the
+ * Where "ATK" works as the namespace, &lt;atk_interface&gt; is the name of
+ * the ATK type (interface or object), &lt;atk_event&gt; is the name of the
+ * signal defined on that interface and &lt;atk_event_detail&gt; is the
* gsignal detail of that signal. You can find more info about gsignal
* details here:
* http://developer.gnome.org/gobject/stable/gobject-Signals.html