diff options
author | marcus <marcus@FreeBSD.org> | 2003-09-26 05:28:25 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-09-26 05:28:25 +0800 |
commit | 982de9213496c73d5b60844103d32513b392b778 (patch) | |
tree | ac824bc1e29e81b6e8098200a720f1be6666f180 /math/gnumeric2 | |
parent | 94d98377d811ecdd59663dc37c3621e63f447100 (diff) | |
download | freebsd-ports-gnome-982de9213496c73d5b60844103d32513b392b778.tar.gz freebsd-ports-gnome-982de9213496c73d5b60844103d32513b392b778.tar.zst freebsd-ports-gnome-982de9213496c73d5b60844103d32513b392b778.zip |
Once more try at fixing the patch problem.
Diffstat (limited to 'math/gnumeric2')
-rw-r--r-- | math/gnumeric2/files/patch-src_dialogs_dialog-sheet-order.c | 19 |
1 files changed, 11 insertions, 8 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 index 8f5ab3252578..d4353b4cafa3 100644 --- a/math/gnumeric2/files/patch-src_dialogs_dialog-sheet-order.c +++ b/math/gnumeric2/files/patch-src_dialogs_dialog-sheet-order.c @@ -1,6 +1,6 @@ ---- src/dialogs/dialog-sheet-order.c.orig Thu Sep 25 14:22:18 2003 -+++ src/dialogs/dialog-sheet-order.c Thu Sep 25 14:25:48 2003 -@@ -106,12 +106,12 @@ +--- 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) { @@ -8,9 +8,12 @@ /* 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); - /* in gtk 2.0 we need: */ -- gint loc; - GtkTreePath *treepath = gtk_tree_model_get_path - (GTK_TREE_MODEL (model), iter); - gchar* path = gtk_tree_path_to_string (treepath); |