2005-02-27 Dan Williams <dcbw@redhat.com>

* panel-applet/NMWirelessApplet.c
		- (nmwa_destroy): Really mean to destroy GUI data model first, then
			dbus data model, not the GUI data model twice.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@478 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams 2005-02-27 17:26:01 +00:00
parent bbbd00d4c5
commit 16b246969a
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2005-02-27 Dan Williams <dcbw@redhat.com>
* panel-applet/NMWirelessApplet.c
- (nmwa_destroy): Really mean to destroy GUI data model first, then
dbus data model, not the GUI data model twice.
2005-02-27 Dan Williams <dcbw@redhat.com>
* panel-applet/NMWirelessApplet.[ch]

View file

@ -1302,7 +1302,7 @@ static void nmwa_destroy (NMWirelessApplet *applet, gpointer user_data)
g_object_unref (G_OBJECT (applet->gconf_client));
nmwa_free_gui_data_model (applet);
nmwa_free_gui_data_model (applet);
nmwa_free_dbus_data_model (applet);
}