diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/bless/Makefile | 4 | ||||
-rw-r--r-- | editors/bless/files/patch-src_gui_dialogs_SaveConfirmationMultiAlert.cs | 12 |
2 files changed, 14 insertions, 2 deletions
diff --git a/editors/bless/Makefile b/editors/bless/Makefile index 8c98d763a16e..5b24746d0c06 100644 --- a/editors/bless/Makefile +++ b/editors/bless/Makefile @@ -3,12 +3,12 @@ # Whom: Mezz <mezz@FreeBSD.org> # # $FreeBSD$ -# $Id: Makefile,v 1.13 2005/12/05 02:55:19 tmclau02 Exp $ +# $Id: Makefile,v 1.15 2006/04/15 01:22:20 tmclau02 Exp $ # PORTNAME= bless PORTVERSION= 0.4.0 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= editors MASTER_SITES= http://download.gna.org/bless/ diff --git a/editors/bless/files/patch-src_gui_dialogs_SaveConfirmationMultiAlert.cs b/editors/bless/files/patch-src_gui_dialogs_SaveConfirmationMultiAlert.cs new file mode 100644 index 000000000000..8e3e33247d94 --- /dev/null +++ b/editors/bless/files/patch-src_gui_dialogs_SaveConfirmationMultiAlert.cs @@ -0,0 +1,12 @@ +--- src/gui/dialogs/SaveConfirmationMultiAlert.cs.orig Mon Feb 7 06:46:46 2005 ++++ src/gui/dialogs/SaveConfirmationMultiAlert.cs Fri Apr 14 21:04:08 2006 +@@ -80,8 +80,7 @@ + tv.AppendColumn ("Name", new CellRendererText(), "text", 1); + + foreach (SaveFileItem item in list) { +- item.Save=true; +- store.AppendValues(item.Save, item.Name); ++ store.AppendValues(true, item.Name); + } + + return tv; |