aboutsummaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-09-25 21:28:25 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-09-25 21:28:25 +0000
commit175caad64ef954cce9f5485fb5de1ca963a09f29 (patch)
tree65926c222793a87645dcfc6189ba0b09d42464fd /math
parent1a13c1384a6dbb4478b72355b770407e42e75fd5 (diff)
downloadports-175caad64ef954cce9f5485fb5de1ca963a09f29.tar.gz
ports-175caad64ef954cce9f5485fb5de1ca963a09f29.zip
Once more try at fixing the patch problem.
Notes
Notes: svn path=/head/; revision=89385
Diffstat (limited to 'math')
-rw-r--r--math/gnumeric2/files/patch-src_dialogs_dialog-sheet-order.c19
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);