This commit is contained in:
hbeham
2015-11-25 23:38:29 +01:00
parent 256710ec94
commit 6774c61365
2 changed files with 7 additions and 27 deletions

View File

@@ -63,11 +63,11 @@ namespace ChanSort.Api
/// <summary>
/// Constructor for exiting TV channel
/// </summary>
public ChannelInfo(SignalSource source, int index, int oldProgNr, string name) : this()
public ChannelInfo(SignalSource source, long index, int oldProgNr, string name) : this()
{
this.SignalSource = source;
this.RecordIndex = index;
this.RecordOrder = index;
this.RecordOrder = (int)index;
this.NewProgramNr = -1;
this.OldProgramNr = oldProgNr;
this.Name = name;