Age | Commit message (Expand) | Author |
---|---|---|
2016-09-07 | perl: Fixed Windows build with VS2015u3. | Arnavion |
2014-12-28 | Use glib for allocations in all plugins | TingPing |
2014-12-17 | More consistently include config.h | TingPingusing System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace thememan
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new XTM());
}
}
}
|