1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

Fix for increased language strictness introduced with Mono 1.1.13.6.

This commit is contained in:
Tom McLaughlin 2006-04-23 20:05:49 +00:00
parent c93f29a107
commit a8edfc53a9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=160252
2 changed files with 14 additions and 2 deletions

View File

@ -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/

View File

@ -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;