summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-09-04 16:35:22 -0400
committerMatthias Clasen <mclasen@redhat.com>2011-09-04 16:36:31 -0400
commit7cad3d52d76cb8484e6da5a23f75554b9313266e (patch)
treefaf65f7bba40202c7c82d1c6049c2750587ec6da
parent75c7688bd7267cb087c704780958651b213459c3 (diff)
downloadat-spi2-atk-7cad3d52d76cb8484e6da5a23f75554b9313266e.tar.gz
Fix the format of the default value in the schema
Bytestrings (ay) are formatted as b'...'. https://bugzilla.gnome.org/show_bug.cgi?id=658102
-rw-r--r--schemas/org.a11y.atspi.gschema.xml.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/schemas/org.a11y.atspi.gschema.xml.in b/schemas/org.a11y.atspi.gschema.xml.in
index f7b92e9..cfefa50 100644
--- a/schemas/org.a11y.atspi.gschema.xml.in
+++ b/schemas/org.a11y.atspi.gschema.xml.in
@@ -2,7 +2,7 @@
<schemalist>
<schema id="org.a11y.atspi" path="/a11y/atspi/">
<key name="atk-bridge-location" type="ay">
- <default>'@libdir@/gtk-3.0/modules/libatk-bridge.so'</default>
+ <default>b'@libdir@/gtk-3.0/modules/libatk-bridge.so'</default>
<summary>Atk-bridge location</summary>
<description>The path to the atk-bridge module; useful for non-GTK applications/toolkits that want to load it.</description>
</key>