Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/devices
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-08-28 19:25:04 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-08-28 19:25:04 (GMT)
commit94d624e26c94a8a763f56f6916078bb860608731 (patch)
tree9788e39c7655b9d774f30f5357a72618f6f579c8 /shell/view/devices
parent0dbb456a5aecffc2db52c1ce8b0ce3792b7893f0 (diff)
Some more icon fixes.
Diffstat (limited to 'shell/view/devices')
-rw-r--r--shell/view/devices/network/mesh.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/view/devices/network/mesh.py b/shell/view/devices/network/mesh.py
index 81c9914..0ce4e71 100644
--- a/shell/view/devices/network/mesh.py
+++ b/shell/view/devices/network/mesh.py
@@ -16,14 +16,14 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
from sugar import profile
-from sugar.graphics import canvasicon
+from sugar.graphics.icon import CanvasIcon
from sugar.graphics import style
from model.devices import device
-class DeviceView(canvasicon.CanvasIcon):
+class DeviceView(CanvasIcon):
def __init__(self, model):
- canvasicon.CanvasIcon.__init__(self, size=style.MEDIUM_ICON_SIZE,
- icon_name='network-mesh')
+ CanvasIcon.__init__(self, size=style.MEDIUM_ICON_SIZE,
+ icon_name='network-mesh')
self._model = model
model.connect('notify::state', self._state_changed_cb)