summaryrefslogtreecommitdiff
path: root/atk/atkhyperlinkimpl.c
diff options
context:
space:
mode:
authorBill Haneman <billh@src.gnome.org>2006-09-08 16:14:23 +0000
committerBill Haneman <billh@src.gnome.org>2006-09-08 16:14:23 +0000
commita61e6c168f7bc32c6560d5f729c1e243c800b024 (patch)
treed1596f51e26de04c3bd8b66142c86864b9985024 /atk/atkhyperlinkimpl.c
parent4a9067ae70b0a0c207a01821f358d9a11991647c (diff)
downloadatk-a61e6c168f7bc32c6560d5f729c1e243c800b024.tar.gz
Fix from Neo Liu - missing return statement in atk_hyperlink_impl_get_hyperlink.
Diffstat (limited to 'atk/atkhyperlinkimpl.c')
-rw-r--r--atk/atkhyperlinkimpl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/atk/atkhyperlinkimpl.c b/atk/atkhyperlinkimpl.c
index 275390a..ecf3124 100644
--- a/atk/atkhyperlinkimpl.c
+++ b/atk/atkhyperlinkimpl.c
@@ -62,7 +62,7 @@ atk_hyperlink_impl_get_hyperlink (AtkHyperlinkImpl *obj)
if (iface->get_hyperlink)
{
- (iface->get_hyperlink) (obj);
+ return (iface->get_hyperlink) (obj);
}
return NULL;
}