[gtk+] gtk/gtktreeview: Avoid a C99ism
- From: Chun-wei Fan <fanchunwei src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] gtk/gtktreeview: Avoid a C99ism
- Date: Wed, 23 Jan 2013 06:49:58 +0000 (UTC)
commit 9bdc970f8dd16caed1a5b1c353394df575f8f22a
Author: Chun-wei Fan <fanchunwei src gnome org>
Date: Wed Jan 23 14:49:50 2013 +0800
gtk/gtktreeview: Avoid a C99ism
Declare a variable at the top of the block
gtk/gtktreeview.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c
index f688527..57592f6 100644
--- a/gtk/gtktreeview.c
+++ b/gtk/gtktreeview.c
@@ -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)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]