summaryrefslogtreecommitdiff
path: root/atk/atkhyperlinkimpl.c
diff options
context:
space:
mode:
authorEvan Nemerson <evan@coeus-group.com>2012-10-23 18:21:41 -0700
committerEvan Nemerson <evan@coeus-group.com>2012-12-01 22:49:04 -0800
commitacd2335095bf859d35332db6fdc9c54b53773918 (patch)
tree2553717ef79e0675b400f711dd87e29d6bd80c35 /atk/atkhyperlinkimpl.c
parentea8b387dc0649313059c04ab32c3a35109555ed0 (diff)
downloadatk-acd2335095bf859d35332db6fdc9c54b53773918.tar.gz
introspection: merge fixes from Vala bindings
https://bugzilla.gnome.org/show_bug.cgi?id=686746
Diffstat (limited to 'atk/atkhyperlinkimpl.c')
-rw-r--r--atk/atkhyperlinkimpl.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/atk/atkhyperlinkimpl.c b/atk/atkhyperlinkimpl.c
index 45ee44e..e4ad10f 100644
--- a/atk/atkhyperlinkimpl.c
+++ b/atk/atkhyperlinkimpl.c
@@ -42,7 +42,7 @@ atk_hyperlink_impl_get_type (void)
/**
* atk_hyperlink_impl_get_hyperlink:
- * @obj: a GObject instance that implements AtkHyperlinkImplIface
+ * @impl: a #GObject instance that implements AtkHyperlinkImplIface
*
* Gets the hyperlink associated with this object.
*
@@ -52,18 +52,18 @@ atk_hyperlink_impl_get_type (void)
* Since: 1.12
**/
AtkHyperlink *
-atk_hyperlink_impl_get_hyperlink (AtkHyperlinkImpl *obj)
+atk_hyperlink_impl_get_hyperlink (AtkHyperlinkImpl *impl)
{
AtkHyperlinkImplIface *iface;
- g_return_val_if_fail (obj != NULL, NULL);
- g_return_val_if_fail (ATK_IS_HYPERLINK_IMPL (obj), NULL);
+ g_return_val_if_fail (impl != NULL, NULL);
+ g_return_val_if_fail (ATK_IS_HYPERLINK_IMPL (impl), NULL);
- iface = ATK_HYPERLINK_IMPL_GET_IFACE (obj);
+ iface = ATK_HYPERLINK_IMPL_GET_IFACE (impl);
if (iface->get_hyperlink)
{
- return (iface->get_hyperlink) (obj);
+ return (iface->get_hyperlink) (impl);
}
return NULL;
}