summaryrefslogtreecommitdiff
path: root/src/connection-editor/page-wifi-security.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/connection-editor/page-wifi-security.c')
-rw-r--r--src/connection-editor/page-wifi-security.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/connection-editor/page-wifi-security.c b/src/connection-editor/page-wifi-security.c
index 20a14646..701126e4 100644
--- a/src/connection-editor/page-wifi-security.c
+++ b/src/connection-editor/page-wifi-security.c
@@ -292,7 +292,7 @@ security_valid (NMUtilsSecurityType sectype, NM80211Mode mode)
}
static void
-finish_setup (CEPageWifiSecurity *self, gpointer unused, GError *error, gpointer user_data)
+finish_setup (CEPageWifiSecurity *self, gpointer user_data)
{
CEPage *parent = CE_PAGE (self);
CEPageWifiSecurityPrivate *priv = CE_PAGE_WIFI_SECURITY_GET_PRIVATE (self);
@@ -308,9 +308,6 @@ finish_setup (CEPageWifiSecurity *self, gpointer unused, GError *error, gpointer
GtkComboBox *combo;
GtkCellRenderer *renderer;
- if (error)
- return;
-
s_wireless = nm_connection_get_setting_wireless (connection);
g_assert (s_wireless);
@@ -503,7 +500,7 @@ ce_page_wifi_security_new (NMConnectionEditor *editor,
nm_connection_editor_check_unsupported_properties (editor, (NMSetting *) s_wsec, known_wsec_props);
- g_signal_connect (self, "initialized", G_CALLBACK (finish_setup), NULL);
+ g_signal_connect (self, CE_PAGE_INITIALIZED, G_CALLBACK (finish_setup), NULL);
return CE_PAGE (self);
}