summaryrefslogtreecommitdiff
path: root/libnm-glib/nm-access-point.c
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2008-03-25 12:41:17 +0000
committerDan Williams <dcbw@redhat.com>2008-03-25 12:41:17 +0000
commit56010ad03a50f9c8f9f1406f4c6b31e04efbfece (patch)
tree58f2feb5f7a0b7a23d49837ecb8ba6ef47d9d3fd /libnm-glib/nm-access-point.c
parent9a163be59a88c071ee2a14127a3c6dc99820e4e4 (diff)
downloadNetworkManager-56010ad03a50f9c8f9f1406f4c6b31e04efbfece.tar.gz
2008-03-25 Dan Williams <dcbw@redhat.com>
* libnm-glib/nm-ip4-config.c libnm-glib/nm-active-connection.c libnm-glib/nm-access-point.c - Use nm_object_queue_notify() instead of g_object_notify() * libnm-glib/nm-device.c - (demarshal_ip4_config): distinguish between successful but missing ip4-config request, and unsuccessful and missing ip4-config request - (nm_device_get_ip4_config): don't try to demarshal a NULL ip4-config path - Use nm_object_queue_notify() instead of g_object_notify() * libnm-glib/nm-device-802-11-wireless.c - (demarshal_active_ap): distinguish between successfull but missing active-ap request, and unsuccessful and missing active-ap request - (dispose, clean_up_aps): consolidate AP list and active AP clearing code - (nm_device_802_11_wireless_set_wireless_enabled): add a private hook for the NMClient to notify the device that wireless is disabled, and therefore to clear the AP list and active AP - Use nm_object_queue_notify() instead of g_object_notify() * libnm-glib/nm-client.c - (poke_wireless_devices_with_rf_status): new function - (update_wireless_status): notify wireless devices of the rfkill status so they can clean up if needed - Use nm_object_queue_notify() instead of g_object_notify() git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3502 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
Diffstat (limited to 'libnm-glib/nm-access-point.c')
-rw-r--r--libnm-glib/nm-access-point.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnm-glib/nm-access-point.c b/libnm-glib/nm-access-point.c
index 691e88909d..7b0703ea62 100644
--- a/libnm-glib/nm-access-point.c
+++ b/libnm-glib/nm-access-point.c
@@ -306,7 +306,7 @@ demarshal_ssid (NMObject *object, GParamSpec *pspec, GValue *value, gpointer fie
if (!nm_ssid_demarshal (value, (GByteArray **) field))
return FALSE;
- g_object_notify (G_OBJECT (object), NM_ACCESS_POINT_SSID);
+ nm_object_queue_notify (object, NM_ACCESS_POINT_SSID);
return TRUE;
}