diff options
author | mezz <mezz@FreeBSD.org> | 2006-05-12 03:50:29 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2006-05-12 03:50:29 +0800 |
commit | b87fbfeef885249e08503fdda3eb161de4748bae (patch) | |
tree | dc28c03848ee15a952516a6ccbb1ee6825c1bfc6 /editors/abiword/files | |
parent | d74573b7cc1b04395c55ccee6fbb216d7d625bea (diff) | |
download | freebsd-ports-gnome-b87fbfeef885249e08503fdda3eb161de4748bae.tar.gz freebsd-ports-gnome-b87fbfeef885249e08503fdda3eb161de4748bae.tar.zst freebsd-ports-gnome-b87fbfeef885249e08503fdda3eb161de4748bae.zip |
Fix the fileselector crash on amd64, bump the PORTREVISION.
Submitted by: Mark Kane <mark@mkproductions.org>
AbiWord Bugzilla: http://bugzilla.abisource.com/show_bug.cgi?id=8776
Diffstat (limited to 'editors/abiword/files')
-rw-r--r-- | editors/abiword/files/patch-fix_fileselector_amd64 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/editors/abiword/files/patch-fix_fileselector_amd64 b/editors/abiword/files/patch-fix_fileselector_amd64 new file mode 100644 index 000000000000..49f436657687 --- /dev/null +++ b/editors/abiword/files/patch-fix_fileselector_amd64 @@ -0,0 +1,12 @@ +diff -r -u abiword-2.4.4.orig/abi/src/af/xap/unix/xap_UnixDlg_FileOpenSaveAs.cpp abiword-2.4.4/abi/src/af/xap/unix/xap_UnixDlg_FileOpenSaveAs.cpp +--- src/af/xap/unix/xap_UnixDlg_FileOpenSaveAs.cpp 2005-09-27 00:23:02.000000000 +0200 ++++ src/af/xap/unix/xap_UnixDlg_FileOpenSaveAs.cpp 2006-05-08 01:17:00.000000000 +0200 +@@ -586,7 +586,7 @@ + (!m_bSave ? GTK_FILE_CHOOSER_ACTION_OPEN : GTK_FILE_CHOOSER_ACTION_SAVE), + GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, + GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, +- NULL) ++ (gchar*)NULL) + ); + #endif + |