Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/model
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2007-03-07 16:40:04 (GMT)
committer Dan Williams <dcbw@redhat.com>2007-03-07 16:40:04 (GMT)
commit550fe95b5a1e83140a977d16decbe270c1c86f0d (patch)
treecc6d4b0a2f31b133f43ff5ff1c5941e5233cea10 /shell/model
parent8c928f05b862e591996bd9fe42cb8324e08318fc (diff)
Clean up sugar + NM client interaction
Change "init-failed" signal to 'initialized' so uninitialized devices don't leak in the sugar model. Get rid of 'ssid-changed' signal on Network objects, makes no sense conceptually, plus new 'initialized' signal replaces what it was used for.
Diffstat (limited to 'shell/model')
-rw-r--r--shell/model/accesspointmodel.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/shell/model/accesspointmodel.py b/shell/model/accesspointmodel.py
index 9762d2c..3d07ca0 100644
--- a/shell/model/accesspointmodel.py
+++ b/shell/model/accesspointmodel.py
@@ -45,17 +45,12 @@ class AccessPointModel(gobject.GObject):
self._nm_network.connect('strength-changed',
self._strength_changed_cb)
- self._nm_network.connect('ssid-changed',
- self._ssid_changed_cb)
self._nm_network.connect('state-changed',
self._state_changed_cb)
def _strength_changed_cb(self, nm_network):
self.notify('strength')
- def _ssid_changed_cb(self, nm_network):
- self.notify('name')
-
def _state_changed_cb(self, nm_network):
self.notify('state')