diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-10-24 07:57:16 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-10-24 07:57:16 +0000 |
commit | 4bfc1e1ca2e79a195667946fb68fefba4e1f8e43 (patch) | |
tree | 33379bac0f3c397aa62863bc7c1b8ff269ee7f90 /gnome-extra/gnome-do/files | |
parent | Remove old version. (diff) | |
download | historical-4bfc1e1ca2e79a195667946fb68fefba4e1f8e43.tar.gz historical-4bfc1e1ca2e79a195667946fb68fefba4e1f8e43.tar.bz2 historical-4bfc1e1ca2e79a195667946fb68fefba4e1f8e43.zip |
Fix compilation with mono 2.8.
Package-Manager: portage-2.1.8.3/cvs/Linux x86_64
Diffstat (limited to 'gnome-extra/gnome-do/files')
-rw-r--r-- | gnome-extra/gnome-do/files/gnome-do-0.8.3.1-mono-2.8.patch | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/gnome-extra/gnome-do/files/gnome-do-0.8.3.1-mono-2.8.patch b/gnome-extra/gnome-do/files/gnome-do-0.8.3.1-mono-2.8.patch new file mode 100644 index 000000000000..2e492a87edde --- /dev/null +++ b/gnome-extra/gnome-do/files/gnome-do-0.8.3.1-mono-2.8.patch @@ -0,0 +1,70 @@ +https://bugs.launchpad.net/do/+bug/634556 +https://bugs.launchpad.net/do/+bug/634550 + +Patches by Andrew Jorgensen + +--- Do.Interface.Linux.Docky/src/Docky.Interface/TextRenderContext.cs 2009-06-28 18:19:29.000000000 -0600 ++++ Do.Interface.Linux.Docky/src/Docky.Interface/TextRenderContext.cs 2010-09-01 13:11:53.000000000 -0600 +@@ -45,12 +45,12 @@ + + public TextRenderContext (Cairo.Context cr, string text, int width) + { +- Context = cr; +- Text = text; +- Alignment = Alignment.Left; +- MaximumWidth = width; +- WrapMode = WrapMode.WordChar; +- EllipsizeMode = EllipsizeMode.End; ++ this.Context = cr; ++ this.Text = text; ++ this.Alignment = Alignment.Left; ++ this.MaximumWidth = width; ++ this.WrapMode = WrapMode.WordChar; ++ this.EllipsizeMode = EllipsizeMode.End; + } + } + } +--- Do/gtk-gui/Do.UI.ColorConfigurationWidget.cs 2009-06-28 18:19:29.000000000 -0600 ++++ Do/gtk-gui/Do.UI.ColorConfigurationWidget.cs 2010-09-01 13:58:26.000000000 -0600 +@@ -57,7 +57,7 @@ + Stetic.Gui.Initialize(this); + // Widget Do.UI.ColorConfigurationWidget + Stetic.BinContainer.Attach(this); +- this.Name = "Do.UI.ColorConfigurationWidget"; ++ base.Name = "Do.UI.ColorConfigurationWidget"; + // Container child Do.UI.ColorConfigurationWidget.Gtk.Container+ContainerChild + this.vbox2 = new Gtk.VBox(); + this.vbox2.Name = "vbox2"; +--- Do/gtk-gui/Do.UI.GeneralPreferencesWidget.cs 2009-06-28 18:19:29.000000000 -0600 ++++ Do/gtk-gui/Do.UI.GeneralPreferencesWidget.cs 2010-09-01 13:58:43.000000000 -0600 +@@ -33,7 +33,7 @@ + Stetic.Gui.Initialize(this); + // Widget Do.UI.GeneralPreferencesWidget + Stetic.BinContainer.Attach(this); +- this.Name = "Do.UI.GeneralPreferencesWidget"; ++ base.Name = "Do.UI.GeneralPreferencesWidget"; + // Container child Do.UI.GeneralPreferencesWidget.Gtk.Container+ContainerChild + this.alignment4 = new Gtk.Alignment(0.5F, 0.5F, 1F, 1F); + this.alignment4.Name = "alignment4"; +--- Do/gtk-gui/Do.UI.KeybindingsPreferencesWidget.cs 2009-06-28 18:19:29.000000000 -0600 ++++ Do/gtk-gui/Do.UI.KeybindingsPreferencesWidget.cs 2010-09-01 13:59:08.000000000 -0600 +@@ -27,7 +27,7 @@ + Stetic.Gui.Initialize(this); + // Widget Do.UI.KeybindingsPreferencesWidget + Stetic.BinContainer.Attach(this); +- this.Name = "Do.UI.KeybindingsPreferencesWidget"; ++ base.Name = "Do.UI.KeybindingsPreferencesWidget"; + // Container child Do.UI.KeybindingsPreferencesWidget.Gtk.Container+ContainerChild + this.vbox2 = new Gtk.VBox(); + this.vbox2.Name = "vbox2"; +--- Do/gtk-gui/Do.UI.ManagePluginsPreferencesWidget.cs 2009-06-28 18:19:29.000000000 -0600 ++++ Do/gtk-gui/Do.UI.ManagePluginsPreferencesWidget.cs 2010-09-01 13:59:19.000000000 -0600 +@@ -43,7 +43,7 @@ + Stetic.Gui.Initialize(this); + // Widget Do.UI.ManagePluginsPreferencesWidget + Stetic.BinContainer.Attach(this); +- this.Name = "Do.UI.ManagePluginsPreferencesWidget"; ++ base.Name = "Do.UI.ManagePluginsPreferencesWidget"; + // Container child Do.UI.ManagePluginsPreferencesWidget.Gtk.Container+ContainerChild + this.vbox3 = new Gtk.VBox(); + this.vbox3.Name = "vbox3"; |