From 9a464755846e4949c3fbfb7aaf12a67927f57dad Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 3 Sep 2010 18:09:35 -0400 Subject: [PATCH] scanner: Fix previous rename-to handling commit --- girparser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/girparser.c b/girparser.c index 0c022f92f..53f1c415d 100644 --- a/girparser.c +++ b/girparser.c @@ -818,7 +818,7 @@ start_function (GMarkupParseContext *context, ctx->in_embedded_type = in_embedded_type; name = find_attribute ("name", attribute_names, attribute_values); - shadows = find_attribute ("name", attribute_names, attribute_values); + shadows = find_attribute ("shadows", attribute_names, attribute_values); symbol = find_attribute ("c:identifier", attribute_names, attribute_values); deprecated = find_attribute ("deprecated", attribute_names, attribute_values); throws = find_attribute ("throws", attribute_names, attribute_values);