GNOME Bugzilla – Bug 629224
Compiler error CS1501 building FSpot.Loaders on mono 2.8
Last modified: 2010-10-13 20:11:18 UTC
When compiling on mono 2.8 a new source code error is revealed. The error has been reviewed and confirmed to be legitimate by the mono team.
Created attachment 170376 [details] [review] compilation fix PixbufLoader from gtk-sharp/master doesn't have a Close() overload which takes a boolean.
Review of attachment 170376 [details] [review]: Fair enough.
(In reply to comment #1) > Created an attachment (id=170376) [details] [review] > compilation fix > > PixbufLoader from gtk-sharp/master doesn't have a Close() overload which takes > a boolean. But in GtkBeans is an extension method Close(bool) defined, which seems to be ignored from the new compiler. I think I discussed this on IRC with somebody. Mike
(In reply to comment #3) > But in GtkBeans is an extension method Close(bool) defined, which seems to be > ignored from the new compiler. Note that extension methods are just static methods with different syntax from the compiler point of view. They are not used (and thus not recognised) while overloading.
Merged! Thanks!