diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2003-10-09 02:23:18 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2003-10-09 02:23:18 +0000 |
commit | 80b32bc99661902376df3e159e29e74d328a5f2b (patch) | |
tree | 1687534af9c4a5377fe51d72d6bd0b5c0d8b2f37 /math/gnumeric2/files | |
parent | Fix build error with WITH_CUPS and gettext(3). (diff) |
Update to 1.2.1.
Notes
Notes:
svn path=/head/; revision=90680
Diffstat (limited to 'math/gnumeric2/files')
-rw-r--r-- | math/gnumeric2/files/patch-src_dialogs_dialog-sheet-order.c | 19 |
1 files changed, 0 insertions, 19 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 deleted file mode 100644 index d4353b4cafa3..000000000000 --- a/math/gnumeric2/files/patch-src_dialogs_dialog-sheet-order.c +++ /dev/null @@ -1,19 +0,0 @@ ---- src/dialogs/dialog-sheet-order.c.orig Mon Sep 15 01:40:38 2003 -+++ src/dialogs/dialog-sheet-order.c Thu Sep 25 17:27:10 2003 -@@ -106,6 +106,7 @@ - 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 +118,7 @@ - gtk_tree_path_free (treepath); - /* end of gtk 2.0 code */ - -- gint loc = atoi(path); -+ loc = atoi(path); - - g_free (path); - |