- renamed project directories

- added unit tests for loading and saving TLLs of various LG models
- added "Save reference list" menu item
This commit is contained in:
hbeham
2013-05-05 22:40:57 +02:00
parent c4584ad8a1
commit e0b0c8f114
119 changed files with 12582 additions and 103 deletions

View File

@@ -0,0 +1,23 @@
using System.Windows.Forms;
using DevExpress.XtraEditors;
namespace ChanSort.Loader.LG
{
public partial class PresetProgramNrDialog : XtraForm
{
public PresetProgramNrDialog()
{
InitializeComponent();
}
private void linkDetails_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
try
{
BrowserHelper.OpenUrl(
"http://sourceforge.net/p/chansort/wiki/Channels%20disappear%20or%20change%20program%20numbers%20randomly/");
}
catch { }
}
}
}