[at-spi2-core] Fix image locale and description



commit 7dbe888c3ba3a8d73669aa7eaa5f99532aead281
Author: Mike Gorse <mgorse novell com>
Date:   Wed Dec 29 03:56:44 2010 -0500

    Fix image locale and description

 atspi/atspi-image.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/atspi/atspi-image.c b/atspi/atspi-image.c
index 10e9d1d..75c3553 100644
--- a/atspi/atspi-image.c
+++ b/atspi/atspi-image.c
@@ -38,7 +38,7 @@ atspi_image_get_image_description (AtspiImage *obj, GError **error)
 
   g_return_val_if_fail (obj != NULL, NULL);
 
-  _atspi_dbus_get_property (obj, atspi_interface_image, "Description", error, "s", &retval);
+  _atspi_dbus_get_property (obj, atspi_interface_image, "ImageDescription", error, "s", &retval);
 
   return retval;
 }
@@ -135,7 +135,7 @@ atspi_image_get_image_locale  (AtspiImage *obj, GError **error)
 
   g_return_val_if_fail (obj != NULL, g_strdup ("C"));
 
-  _atspi_dbus_call (obj, atspi_interface_image, "GetImageLocale", error, "=>s", &retval);
+  _atspi_dbus_get_property (obj, atspi_interface_image, "ImageLocale", error, "s", &retval);
 
   return retval;
 }



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