summaryrefslogtreecommitdiff
path: root/atspi/atspi-text.c
diff options
context:
space:
mode:
authorColomban Wendling <cwendling@hypra.fr>2023-04-25 12:22:41 +0200
committerColomban Wendling <cwendling@hypra.fr>2023-04-25 12:22:41 +0200
commit3ba50db92c23518fb5c0b713e58a8ca21e7994e0 (patch)
tree9507c19cac86a64c3e5af38c5f684f8757252b10 /atspi/atspi-text.c
parent758c5830865c1c1b1768cdec099baa140a6c1a25 (diff)
downloadat-spi2-core-3ba50db92c23518fb5c0b713e58a8ca21e7994e0.tar.gz
Use const attribute name input in atspi_*_get*_attribute_value()
There is no point in having them mutable, and makes the API look more awkward and harder to use than it actually is.
Diffstat (limited to 'atspi/atspi-text.c')
-rw-r--r--atspi/atspi-text.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/atspi/atspi-text.c b/atspi/atspi-text.c
index 48e62913..c9161501 100644
--- a/atspi/atspi-text.c
+++ b/atspi/atspi-text.c
@@ -308,7 +308,7 @@ atspi_text_get_attribute_run (AtspiText *obj,
gchar *
atspi_text_get_attribute_value (AtspiText *obj,
gint offset,
- gchar *attribute_name,
+ const gchar *attribute_name,
GError **error)
{
return atspi_text_get_text_attribute_value (obj, offset, attribute_name,
@@ -329,7 +329,7 @@ atspi_text_get_attribute_value (AtspiText *obj,
gchar *
atspi_text_get_text_attribute_value (AtspiText *obj,
gint offset,
- gchar *attribute_name,
+ const gchar *attribute_name,
GError **error)
{
gchar *retval = NULL;
@@ -337,7 +337,7 @@ atspi_text_get_text_attribute_value (AtspiText *obj,
g_return_val_if_fail (obj != NULL, NULL);
- _atspi_dbus_call (obj, atspi_interface_text, "GetAttributeValue", error, "is=>s", d_i, (const gchar *) attribute_name, &retval);
+ _atspi_dbus_call (obj, atspi_interface_text, "GetAttributeValue", error, "is=>s", d_i, attribute_name, &retval);
if (!retval)
retval = g_strdup ("");