[at-spi2-atk] Fix for BGO#645321: Use array of bytes rather than string for path



commit 75c7688bd7267cb087c704780958651b213459c3
Author: Mike Gorse <mgorse novell com>
Date:   Fri Sep 2 15:03:16 2011 -0500

    Fix for BGO#645321: Use array of bytes rather than string for path
    
    According to Christian Persch, paths are not strings because they may be
    non-UTF-8, so they must use "ay" instead of "s" for their type in a
    GSettings schema.

 schemas/org.a11y.atspi.gschema.xml.in |    2 +-
 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 43d27aa..f7b92e9 100644
--- a/schemas/org.a11y.atspi.gschema.xml.in
+++ b/schemas/org.a11y.atspi.gschema.xml.in
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <schemalist>
   <schema id="org.a11y.atspi" path="/a11y/atspi/">
-    <key name="atk-bridge-location" type="s">
+    <key name="atk-bridge-location" type="ay">
       <default>'@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>



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