summary refs log tree commit diff stats
path: root/plugins/ewc
diff options
context:
space:
mode:
authorTingPing <tngpng@gmail.com>2013-03-23 22:24:19 -0300
committerTingPing <tngpng@gmail.com>2013-03-23 22:24:19 -0300
commit84ffde7152dfe579700addce4ffaf29bc39eaa95 (patch)
tree5adf158c13b450c29a8072fb494b6ecd992d29eb /plugins/ewc
parent2c029f763c719138981b6fcf2de8ca621a083e4b (diff)
Be compatable with TLS
closes #461
Diffstat (limited to 'plugins/ewc')
0 files changed, 0 insertions, 0 deletions
' href='#n8'>8 9 10 11 12 13 14 15 16 17 18 19 20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

                        

















                                                                            

             















                                                                 
                                       


         
/**
 * HexChat Theme Manager
 *
 * Copyright (C) 2012 Patrick Griffs
 * Copyright (C) 2012 Berke Viktor
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

using 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 HTM());
        }
    }
}