summary refs log tree commit diff stats
path: root/plugins/upd/upd.vcxproj
diff options
context:
space:
mode:
authorDiogo Sousa <diogogsousa@gmail.com>2013-10-21 04:25:36 +0100
committerTingPing <tingping@tingping.se>2013-10-22 13:28:03 -0400
commit6d3c176ff83052f35c0eed2ffd7aa35bf69315fb (patch)
tree2d1aa9b512f6313ccc2b05cce27674e73dd66937 /plugins/upd/upd.vcxproj
parenta25363f5c35ba818b2dcd6abc4b7375d6fd41770 (diff)
url_check_line () now recognizes all urls
previously it only recognized url with "://" after the scheme.
Urls without a scheme are purposely not recognized by this function.

Fixes #701
Closes #815
Diffstat (limited to 'plugins/upd/upd.vcxproj')
0 files changed, 0 insertions, 0 deletions
'n2' href='#n2'>2
3
4
5
6
7
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());
        }
    }
}