forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is a long-standing bug with a simple patch to fix an ambiguous property reference. Closes: https://bugs.gentoo.org/697108 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Sam James <[email protected]>
- Loading branch information
1 parent
f327271
commit b28d37b
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
dev-dotnet/gtk-sharp/files/gtk-sharp-2.12.21-mono-ambiguous-range.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
https://github.com/mono/gtk-sharp/commit/a00552ad68ae349e89e440dca21b86dbd6bccd30 | ||
https://bugs.gentoo.org/697108 | ||
--- a/sample/test/TestRange.cs 2012-09-25 14:19:02.000000000 -0700 | ||
+++ b/sample/test/TestRange.cs 2020-07-05 09:07:25.112932811 -0700 | ||
@@ -10,6 +10,10 @@ | ||
|
||
using Gtk; | ||
|
||
+// disambiguate, Gtk.Range vs System.Range | ||
+using Range=Gtk.Range; | ||
+ | ||
+ | ||
namespace WidgetViewer { | ||
|
||
public class TestRange |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters