Add some missing braces

svn path=/trunk/; revision=21005
This commit is contained in:
Matthias Clasen 2008-08-05 00:21:49 +00:00
parent 36a571570d
commit c455b5eac1
4 changed files with 24 additions and 9 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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