network: Remove unused variable

This commit is contained in:
Rui Matos 2015-01-16 14:15:12 +01:00
parent b45d08b603
commit 386a996a19

View file

@ -73,7 +73,6 @@ struct _CcNetworkPanelPrivate
MMManager *modem_manager;
NMRemoteSettings *remote_settings;
gboolean updating_device;
guint refresh_idle;
/* Killswitch stuff */
GDBusProxy *rfkill_proxy;
@ -239,11 +238,6 @@ cc_network_panel_dispose (GObject *object)
g_clear_object (&priv->kill_switch_header);
priv->rfkill_switch = NULL;
if (priv->refresh_idle != 0) {
g_source_remove (priv->refresh_idle);
priv->refresh_idle = 0;
}
G_OBJECT_CLASS (cc_network_panel_parent_class)->dispose (object);
}