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-mono28.patch
Date: Mon, 29 Nov 2010 19:51:00
Message-Id: 20101129195045.F1EDB20054@flycatcher.gentoo.org
1 graaff 10/11/29 19:50:45
2
3 Added: gnome-do-plugins-0.8.2-mono28.patch
4 Log:
5 Add various patches to fix compilation with Mono 2.8, fixing bug 340785.
6
7 (Portage version: 2.1.9.24/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.2-mono28.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.2-mono28.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.2-mono28.patch?rev=1.1&content-type=text/plain
14
15 Index: gnome-do-plugins-0.8.2-mono28.patch
16 ===================================================================
17 https://bugs.launchpad.net/do-plugins/+bug/634564
18
19 --- Evolution/src/ContactItemSource.cs 2010-11-04 16:32:32.000000000 -0600
20 +++ Evolution/src/ContactItemSource.cs 2010-11-04 16:34:25.000000000 -0600
21 @@ -35,7 +35,7 @@
22 public string Detail { get; set; }
23 public string Key { get; set; }
24
25 - public ContactAttribute (string key, string detail)
26 + public ContactAttribute (string key, string detail) : this ()
27 {
28 Key = key;
29 Detail = detail;
30 --- File/src/Do/Do.FilesAndFolders/IndexedFolder.cs 2009-10-12 14:30:04.000000000 -0600
31 +++ File/src/Do/Do.FilesAndFolders/IndexedFolder.cs 2010-11-04 16:34:45.000000000 -0600
32 @@ -33,7 +33,7 @@
33 public uint Level { get; private set; }
34 public FolderStatus Status { get; private set; }
35
36 - public IndexedFolder (string path, uint level, FolderStatus status)
37 + public IndexedFolder (string path, uint level, FolderStatus status) : this ()
38 {
39 if (path == null) throw new ArgumentNullException ("path");
40
41 --- Pidgin/src/PidginContactItemSource.cs 2009-10-12 14:30:04.000000000 -0600
42 +++ Pidgin/src/PidginContactItemSource.cs 2010-09-01 16:41:10.000000000 -0600
43 @@ -241,7 +241,7 @@
44 }
45 //if the alias is still null, let's try to get the server alias
46 if (string.IsNullOrEmpty (alias))
47 - alias = Pidgin.GetBuddyServerAlias (protos[proto]) ?? null;
48 + alias = (string) Pidgin.GetBuddyServerAlias (protos[proto]) ?? null;
49 break;
50 //let's pick up the custom icon as the metacontact's icon
51 case "setting":
52 @@ -278,4 +278,4 @@
53 return buddy;
54 }
55 }
56 -}
57 \ No newline at end of file
58 +}