]> Pileus Git - ~andy/gtk/commitdiff
gtk/gtktreeview: Avoid a C99ism
authorChun-wei Fan <fanchunwei@src.gnome.org>
Wed, 23 Jan 2013 06:49:50 +0000 (14:49 +0800)
committerChun-wei Fan <fanchunwei@src.gnome.org>
Wed, 23 Jan 2013 06:49:50 +0000 (14:49 +0800)
Declare a variable at the top of the block

gtk/gtktreeview.c

index f6885277c3cef89448b137f5e2f7b5571d8b2919..57592f61dd93efe62dc01d2827b14605b4fd1854 100644 (file)
@@ -2479,6 +2479,7 @@ gtk_tree_view_modify_column_width (GtkTreeView       *tree_view,
   gboolean is_expand;
   gint n_expand_others;
   gint minimum, natural, natural_others;
+  gint expand;
 
   is_expand = gtk_tree_view_column_get_expand (column);
   n_expand_others = tree_view->priv->n_expand_columns - (is_expand ? 1 : 0);
@@ -2516,7 +2517,7 @@ gtk_tree_view_modify_column_width (GtkTreeView       *tree_view,
        * It is possible for the solved natural width to be less than the
        * minimum; in that case, we cannot let the column expand.
        */
-      gint expand = (tree_view->priv->width - natural_others - width) / n_expand_others;
+      expand = (tree_view->priv->width - natural_others - width) / n_expand_others;
 
       if (minimum + expand > width)
        {