Bug 503863 - fix warnings ISO C90 forbids mixed declarations and code, r=roc

This commit is contained in:
Michael Ventor 2009-07-17 10:22:11 -04:00
Родитель bf2b36394b
Коммит 888bd4b9f3
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -850,9 +850,9 @@ gint
moz_gtk_button_get_default_overflow(gint* border_top, gint* border_left,
gint* border_bottom, gint* border_right)
{
ensure_button_widget();
GtkBorder* default_outside_border;
ensure_button_widget();
gtk_widget_style_get(gButtonWidget,
"default-outside-border", &default_outside_border,
NULL);
@ -873,9 +873,9 @@ static gint
moz_gtk_button_get_default_border(gint* border_top, gint* border_left,
gint* border_bottom, gint* border_right)
{
ensure_button_widget();
GtkBorder* default_border;
ensure_button_widget();
gtk_widget_style_get(gButtonWidget,
"default-border", &default_border,
NULL);
@ -2402,6 +2402,7 @@ moz_gtk_tabpanels_paint(GdkDrawable* drawable, GdkRectangle* rect,
* on the box's corner, eg. themes using the Pixbuf engine.
*/
GtkStyle* style;
GdkRectangle halfClipRect;
ensure_tab_widget();
gtk_widget_set_direction(gTabWidget, direction);
@ -2415,7 +2416,6 @@ moz_gtk_tabpanels_paint(GdkDrawable* drawable, GdkRectangle* rect,
* not drawn.
* - The right half is drawn with the gap to the left outside the modified clip rect.
*/
GdkRectangle halfClipRect;
if (!gdk_rectangle_intersect(rect, cliprect, &halfClipRect))
return MOZ_GTK_SUCCESS;