[network-manager-applet/danw/libnm-bgo736911: 13/17] fixup! applet: port to libnm
- From: Dan Williams <dcbw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [network-manager-applet/danw/libnm-bgo736911: 13/17] fixup! applet: port to libnm
- Date: Tue, 24 Feb 2015 19:33:49 +0000 (UTC)
commit d42c30298d787056376e6c4871b607bdf5ef76ce
Author: Dan Williams <dcbw redhat com>
Date: Wed Feb 18 16:42:18 2015 -0600
fixup! applet: port to libnm
src/applet.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/src/applet.c b/src/applet.c
index cae9d52..98dfe8c 100644
--- a/src/applet.c
+++ b/src/applet.c
@@ -1695,7 +1695,10 @@ nma_menu_add_devices (GtkWidget *menu, NMApplet *applet)
static int
sort_vpn_connections (gconstpointer a, gconstpointer b)
{
- return strcmp (get_connection_id (NM_CONNECTION (a)), get_connection_id (NM_CONNECTION (b)));
+ NMConnection **ca = (NMConnection **) a;
+ NMConnection **cb = (NMConnection **) b;
+
+ return strcmp (nm_connection_get_id (NM_CONNECTION (*ca)), nm_connection_get_id (NM_CONNECTION
(*cb)));
}
static GPtrArray *
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]