summaryrefslogtreecommitdiff
path: root/editors/abiword/patches/patch-sa
diff options
context:
space:
mode:
Diffstat (limited to 'editors/abiword/patches/patch-sa')
-rw-r--r--editors/abiword/patches/patch-sa14
1 files changed, 7 insertions, 7 deletions
diff --git a/editors/abiword/patches/patch-sa b/editors/abiword/patches/patch-sa
index b9a0be068d3..a81135ee2ef 100644
--- a/editors/abiword/patches/patch-sa
+++ b/editors/abiword/patches/patch-sa
@@ -1,18 +1,18 @@
-$NetBSD: patch-sa,v 1.1 2007/11/14 15:41:41 rillig Exp $
+$NetBSD: patch-sa,v 1.2 2009/04/07 16:27:08 drochner Exp $
---- src/af/util/xp/ut_misc.cpp.orig 2005-06-20 20:59:13.000000000 +0200
-+++ src/af/util/xp/ut_misc.cpp 2007-11-14 14:24:39.136875000 +0100
-@@ -1128,7 +1128,7 @@ const XML_Char ** UT_splitPropsToArray(X
+--- src/af/util/xp/ut_misc.cpp.orig 2008-11-10 22:00:35.000000000 +0100
++++ src/af/util/xp/ut_misc.cpp
+@@ -1077,7 +1077,7 @@ const gchar ** UT_splitPropsToArray(gcha
}
char * semi = NULL;
- const char * p = pProps;
+ char * p = pProps;
- while(semi = strchr(p, ';'))
+ while((semi = (char *) strchr(p, ';')))
{
*semi = 0;
-@@ -1142,7 +1142,7 @@ const XML_Char ** UT_splitPropsToArray(X
- const XML_Char ** pPropsArray = new const XML_Char *[2 * iPropCount + 1];
+@@ -1091,7 +1091,7 @@ const gchar ** UT_splitPropsToArray(gcha
+ const gchar ** pPropsArray = new const gchar *[2 * iPropCount + 1];
UT_return_val_if_fail( pPropsArray, NULL );
- const char * pStart = pProps;