Re: [Banshee-List] Compiling under windows
- From: Gabriel Burt <gabriel burt gmail com>
- To: banshee-list gnome org
- Subject: Re: [Banshee-List] Compiling under windows
- Date: Sat, 15 Jan 2011 13:02:55 -0600
Hrm, or maybe the project isn't set to target .NET 3.5 and so the
System.Linq stuff is ifdef'd out?
Gabriel
On Sat, Jan 15, 2011 at 7:43 AM, Jensen Somers <jensen jsomers be> wrote:
> On Fri, Jan 14, 2011 at 6:50 AM, Dustin C. Hatch <admiralnemo gmail com> wrote:
>>
>> I still have not completely solved the Linq extension method problem I
>> mentioned earlier, so I replaced the ``GetSubtitleDescription`` method of
>> the ``Banshee.GStreamerSharp.PlayerEngine`` class to::
>>
>> Gst.List tag_list = playbin.GetTextTags (index)
>> .GetTag (Gst.Tag.LanguageCode);
>> foreach(string tag in tag_list)
>> {
>> if (tag != null)
>> {
>> return tag;
>> }
>> }
>> return default(string);
>>
>
> Since Gst.List is a custom list implementation it is possible the
> windows version does not implement the same features as the Linux
> builds.
> Another issue might be with the Mono implementation as adding a cast
> to a string seems to fix the issue too. Maybe Mono is looser and
> allows this.
>
> return playbin.GetTextTags(index)
> .GetTag(Gst.Tag.LanguageCode)
> .Cast<string>()
> .FirstOrDefault(t => t != null);
>
> - Jensen
> _______________________________________________
> banshee-list mailing list
> banshee-list gnome org
> http://mail.gnome.org/mailman/listinfo/banshee-list (unsubscribe here)
>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]