diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-09-25 16:06:44 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-09-25 16:06:44 +0000 |
commit | 39691bea91f9b65dc8027dfc29311bde33abfc14 (patch) | |
tree | c6bb9678637083a5f31294c134fc4be2e48717d9 /math | |
parent | c39f6d9627a2a433ed513873e7e01332c32b2b09 (diff) |
Fix build on -STABLE.
Submitted by: Sergey Akifyev <asa@gascom.ru>
Notes
Notes:
svn path=/head/; revision=89360
Diffstat (limited to 'math')
-rw-r--r-- | math/gnumeric2/files/patch-src_dialogs_dialog_sheet_order.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/math/gnumeric2/files/patch-src_dialogs_dialog_sheet_order.c b/math/gnumeric2/files/patch-src_dialogs_dialog_sheet_order.c new file mode 100644 index 000000000000..c0c1392de52d --- /dev/null +++ b/math/gnumeric2/files/patch-src_dialogs_dialog_sheet_order.c @@ -0,0 +1,19 @@ +--- src/dialogs/dialog-sheet-order.c.orig Thu Sep 25 11:53:53 2003 ++++ src/dialogs/dialog-sheet-order.c Thu Sep 25 11:54:25 2003 +@@ -106,6 +106,8 @@ + static gint + location_of_iter (GtkTreeIter *iter, GtkListStore *model) + { ++ gint loc; ++ + /* Note: in gtk 2.2 we could just do: */ + /* gchar* path = gtk_tree_model_get_string_from_iter */ + /* (GTK_TREE_MODEL (model), iter); */ +@@ -117,7 +119,7 @@ + gtk_tree_path_free (treepath); + /* end of gtk 2.0 code */ + +- gint loc = atoi(path); ++ loc = atoi(path); + + g_free (path); |