Parse last_modification_time attribute in <signal> tag

2007-07-08  Johan Dahlin  <jdahlin@async.com.br>

    * gtk/gtkbuilderparser.c (parse_signal): Parse last_modification_time
    attribute in <signal> tag


svn path=/trunk/; revision=18402
This commit is contained in:
Johan Dahlin
2007-07-08 13:39:42 +00:00
committed by Johan Dahlin
parent 5f3729b87c
commit db376bf7de
4 changed files with 31 additions and 17 deletions

View File

@ -484,6 +484,9 @@ parse_signal (ParserData *data,
}
else if (strcmp (names[i], "object") == 0)
object = g_strdup (values[i]);
else if (strcmp (names[i], "last_modification_time") == 0)
/* parse but ignore */
;
else
{
error_invalid_attribute (data, element_name, names[i], error);