mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-25 13:11:13 +00:00
Add some missing braces
svn path=/trunk/; revision=21005
This commit is contained in:
parent
36a571570d
commit
c455b5eac1
@ -1,3 +1,12 @@
|
||||
2008-08-04 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Bug 545982 – missing braces cause bogus warnings when using GtkBuilder
|
||||
|
||||
* gtk/gtkcelllayout.c:
|
||||
* gtk/gtkdialog.c:
|
||||
* gtk/gtkcontainer.c: Add missing braces to some GtkBuildable
|
||||
implementations. Patch by Antti Kaijanmäki
|
||||
|
||||
2008-08-05 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* gtk/gtktext.c: Cast pointer to gintptr instead of gulong to
|
||||
|
@ -330,9 +330,11 @@ attributes_start_element (GMarkupParseContext *context,
|
||||
guint i;
|
||||
|
||||
if (strcmp (element_name, "attribute") == 0)
|
||||
for (i = 0; names[i]; i++)
|
||||
if (strcmp (names[i], "name") == 0)
|
||||
parser_data->attr_name = g_strdup (values[i]);
|
||||
{
|
||||
for (i = 0; names[i]; i++)
|
||||
if (strcmp (names[i], "name") == 0)
|
||||
parser_data->attr_name = g_strdup (values[i]);
|
||||
}
|
||||
else if (strcmp (element_name, "attributes") == 0)
|
||||
return;
|
||||
else
|
||||
|
@ -367,9 +367,11 @@ attributes_start_element (GMarkupParseContext *context,
|
||||
guint i;
|
||||
|
||||
if (strcmp (element_name, "property") == 0)
|
||||
for (i = 0; names[i]; i++)
|
||||
if (strcmp (names[i], "name") == 0)
|
||||
parser_data->child_prop_name = g_strdup (values[i]);
|
||||
{
|
||||
for (i = 0; names[i]; i++)
|
||||
if (strcmp (names[i], "name") == 0)
|
||||
parser_data->child_prop_name = g_strdup (values[i]);
|
||||
}
|
||||
else if (strcmp (element_name, "packing") == 0)
|
||||
return;
|
||||
else
|
||||
|
@ -1310,9 +1310,11 @@ attributes_start_element (GMarkupParseContext *context,
|
||||
guint i;
|
||||
|
||||
if (strcmp (element_name, "action-widget") == 0)
|
||||
for (i = 0; names[i]; i++)
|
||||
if (strcmp (names[i], "response") == 0)
|
||||
parser_data->response = g_strdup (values[i]);
|
||||
{
|
||||
for (i = 0; names[i]; i++)
|
||||
if (strcmp (names[i], "response") == 0)
|
||||
parser_data->response = g_strdup (values[i]);
|
||||
}
|
||||
else if (strcmp (element_name, "action-widgets") == 0)
|
||||
return;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user