diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-04-02 14:30:33 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-04-02 14:30:33 +0000 |
commit | 7a2f7740706863b397fca4977332633824018ec9 (patch) | |
tree | 5666fbc774d4a8f7d09ae9d1c0092b4eded43e2e /gnome-extra/gnome-do-plugins/files | |
parent | version bump (diff) | |
download | gentoo-2-7a2f7740706863b397fca4977332633824018ec9.tar.gz gentoo-2-7a2f7740706863b397fca4977332633824018ec9.tar.bz2 gentoo-2-7a2f7740706863b397fca4977332633824018ec9.zip |
Fix compatibility with Mono 2.6. Fixes bug 310371.
(Portage version: 2.1.7.17/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra/gnome-do-plugins/files')
-rw-r--r-- | gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.2-mono26.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.2-mono26.patch b/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.2-mono26.patch new file mode 100644 index 000000000000..e4aa8f2e695f --- /dev/null +++ b/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.2-mono26.patch @@ -0,0 +1,17 @@ +Upstream revision 678 fixes compilation with mono 2.6. + +=== modified file 'Evolution/src/ContactItemSource.cs' +--- Evolution/src/ContactItemSource.cs 2009-06-22 04:05:16 +0000 ++++ Evolution/src/ContactItemSource.cs 2010-02-12 01:08:47 +0000 +@@ -32,8 +32,8 @@ + { + public struct ContactAttribute + { +- public string Detail { get; protected set; } +- public string Key { get; protected set; } ++ public string Detail { get; private set; } ++ public string Key { get; private set; } + + public ContactAttribute (string key, string detail) + { + |