Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/gnome-do-plugins/files: gnome-do-plugins-0.8.2-mono26.patch
Date: Fri, 02 Apr 2010 14:30:38
Message-Id: E1NxhtJ-0003oO-8S@stork.gentoo.org
1 graaff 10/04/02 14:30:33
2
3 Added: gnome-do-plugins-0.8.2-mono26.patch
4 Log:
5 Fix compatibility with Mono 2.6. Fixes bug 310371.
6 (Portage version: 2.1.7.17/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.2-mono26.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.2-mono26.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.2-mono26.patch?rev=1.1&content-type=text/plain
13
14 Index: gnome-do-plugins-0.8.2-mono26.patch
15 ===================================================================
16 Upstream revision 678 fixes compilation with mono 2.6.
17
18 === modified file 'Evolution/src/ContactItemSource.cs'
19 --- Evolution/src/ContactItemSource.cs 2009-06-22 04:05:16 +0000
20 +++ Evolution/src/ContactItemSource.cs 2010-02-12 01:08:47 +0000
21 @@ -32,8 +32,8 @@
22 {
23 public struct ContactAttribute
24 {
25 - public string Detail { get; protected set; }
26 - public string Key { get; protected set; }
27 + public string Detail { get; private set; }
28 + public string Key { get; private set; }
29
30 public ContactAttribute (string key, string detail)
31 {