diff options
author | Dan Winship <danw@gnome.org> | 2014-09-24 13:14:48 -0400 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2014-10-10 12:40:14 -0400 |
commit | 90f66ff4562d18a58ccbba3ce378ce3b0f3942d4 (patch) | |
tree | bfd93974a832c1849af49fd8bf22311f92cb8495 /libnm/nm-client.h | |
parent | 98bcc51240c3504f422c7358517c842335e33e91 (diff) | |
download | NetworkManager-90f66ff4562d18a58ccbba3ce378ce3b0f3942d4.tar.gz |
libnm: split "NMManager" out of NMClient
Clone NMClient as NMManager, and make NMClient just be a wrapper
around that new class.
Diffstat (limited to 'libnm/nm-client.h')
-rw-r--r-- | libnm/nm-client.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libnm/nm-client.h b/libnm/nm-client.h index be65e67518..bcb897eada 100644 --- a/libnm/nm-client.h +++ b/libnm/nm-client.h @@ -30,7 +30,6 @@ #include <glib-object.h> #include <gio/gio.h> #include <nm-dbus-interface.h> -#include "nm-object.h" #include "nm-device.h" #include "nm-active-connection.h" #include "nm-vpn-connection.h" @@ -144,11 +143,11 @@ typedef enum { GQuark nm_client_error_quark (void); typedef struct { - NMObject parent; + GObject parent; } NMClient; typedef struct { - NMObjectClass parent; + GObjectClass parent; /* Signals */ void (*device_added) (NMClient *client, NMDevice *device); |