From a61e6c168f7bc32c6560d5f729c1e243c800b024 Mon Sep 17 00:00:00 2001 From: Bill Haneman Date: Fri, 8 Sep 2006 16:14:23 +0000 Subject: Fix from Neo Liu - missing return statement in atk_hyperlink_impl_get_hyperlink. --- atk/atkhyperlinkimpl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'atk/atkhyperlinkimpl.c') 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; } -- cgit v1.2.1