Remove some unnecessary if statements
This commit is contained in:
parent
ec7a0d6e13
commit
46061f4f3c
@ -1517,10 +1517,8 @@ server_child (server * serv)
|
|||||||
|
|
||||||
if (!serv->dont_use_proxy) /* blocked in serverlist? */
|
if (!serv->dont_use_proxy) /* blocked in serverlist? */
|
||||||
{
|
{
|
||||||
if (FALSE)
|
|
||||||
;
|
|
||||||
#ifdef USE_LIBPROXY
|
#ifdef USE_LIBPROXY
|
||||||
else if (prefs.hex_net_proxy_type == 5)
|
if (prefs.hex_net_proxy_type == 5)
|
||||||
{
|
{
|
||||||
char **proxy_list;
|
char **proxy_list;
|
||||||
char *url, *proxy;
|
char *url, *proxy;
|
||||||
@ -1554,7 +1552,7 @@ server_child (server * serv)
|
|||||||
g_free (url);
|
g_free (url);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
else if (prefs.hex_net_proxy_host[0] &&
|
if (prefs.hex_net_proxy_host[0] &&
|
||||||
prefs.hex_net_proxy_type > 0 &&
|
prefs.hex_net_proxy_type > 0 &&
|
||||||
prefs.hex_net_proxy_use != 2) /* proxy is NOT dcc-only */
|
prefs.hex_net_proxy_use != 2) /* proxy is NOT dcc-only */
|
||||||
{
|
{
|
||||||
|
@ -134,7 +134,6 @@ custom_list_get_type (void)
|
|||||||
return custom_list_type;
|
return custom_list_type;
|
||||||
|
|
||||||
/* Some boilerplate type registration stuff */
|
/* Some boilerplate type registration stuff */
|
||||||
if (1)
|
|
||||||
{
|
{
|
||||||
static const GTypeInfo custom_list_info = {
|
static const GTypeInfo custom_list_info = {
|
||||||
sizeof (CustomListClass),
|
sizeof (CustomListClass),
|
||||||
@ -154,7 +153,6 @@ custom_list_get_type (void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Here we register our GtkTreeModel interface with the type system */
|
/* Here we register our GtkTreeModel interface with the type system */
|
||||||
if (1)
|
|
||||||
{
|
{
|
||||||
static const GInterfaceInfo tree_model_info = {
|
static const GInterfaceInfo tree_model_info = {
|
||||||
(GInterfaceInitFunc) custom_list_tree_model_init,
|
(GInterfaceInitFunc) custom_list_tree_model_init,
|
||||||
@ -167,7 +165,6 @@ custom_list_get_type (void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Add GtkTreeSortable interface */
|
/* Add GtkTreeSortable interface */
|
||||||
if (1)
|
|
||||||
{
|
{
|
||||||
static const GInterfaceInfo tree_sortable_info = {
|
static const GInterfaceInfo tree_sortable_info = {
|
||||||
(GInterfaceInitFunc) custom_list_sortable_init,
|
(GInterfaceInitFunc) custom_list_sortable_init,
|
||||||
|
Loading…
Reference in New Issue
Block a user