~khurshid-alam/unity-control-center/libnm-port-test

« back to all changes in this revision

Viewing changes to panels/network/connection-editor/ce-page-details.h

  • Committer: Khurshid Alam
  • Date: 2018-06-05 14:47:56 UTC
  • Revision ID: khurshid.alam@linuxmail.org-20180605144756-or0tftb2kddhvhq2
Update connection editor pages and wireless security from Gnome-3.26

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <glib-object.h>
26
26
 
27
27
#include <gtk/gtk.h>
 
28
#include "net-connection-editor.h"
28
29
#include "ce-page.h"
29
30
 
30
31
G_BEGIN_DECLS
45
46
 
46
47
        NMDevice *device;
47
48
        NMAccessPoint *ap;
 
49
        NetConnectionEditor *editor;
48
50
};
49
51
 
50
52
struct _CEPageDetailsClass
54
56
 
55
57
GType   ce_page_details_get_type (void);
56
58
 
57
 
CEPage *ce_page_details_new      (NMConnection     *connection,
58
 
                                  NMClient         *client,
59
 
                                  NMDevice         *device,
60
 
                                  NMAccessPoint    *ap);
 
59
CEPage *ce_page_details_new      (NMConnection        *connection,
 
60
                                  NMClient            *client,
 
61
                                  NMDevice            *device,
 
62
                                  NMAccessPoint       *ap,
 
63
                                  NetConnectionEditor *editor);
61
64
 
62
65
G_END_DECLS
63
66