~kvalo/indicator-network/bug-735413

« back to all changes in this revision

Viewing changes to src/settings/frontend/widgets/device-boxes/wired.vala

  • Committer: Kalle Valo
  • Date: 2011-02-24 09:21:48 UTC
  • mfrom: (152.1.7 settings-tech-control)
  • Revision ID: kalle.valo@canonical.com-20110224092148-fx12f8o1zec2j35z
MergeĀ lp:~kvalo/indicator-network/settings-tech-control

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
    /* A Gtk.VBox which holds all of the widgets to control a wired
24
24
       device. */
25
25
 
26
 
    private Device device;
 
26
    private Connman.Manager connman;
27
27
 
28
 
    public WiredBox(Device device, string datadir) {
 
28
    public WiredBox(Connman.Manager connman, string datadir) {
29
29
        this.set_spacing(12);
30
 
        this.device = device;
31
 
        this.device.notify["state"].connect(this.on_device_state_changed);
 
30
        this.connman = connman;
32
31
    }
33
 
 
34
 
    public override void on_device_state_changed(ParamSpec p) {}
35
32
}