Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-08-26 18:44:51 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-08-26 18:44:51 (GMT)
commit405dafc90850807bb478e3a00a031e07f602f0ff (patch)
tree6d391c79874cc0a57c7980f087e04141b6dcda4c /shell
parentcf7ff39c5ad7750f71baeded213f04a89470e658 (diff)
Adapt to changes in the icon API.
Diffstat (limited to 'shell')
-rw-r--r--shell/model/homeactivity.py2
-rw-r--r--shell/view/frame/overlaybox.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/shell/model/homeactivity.py b/shell/model/homeactivity.py
index 434a3a6..1d29be2 100644
--- a/shell/model/homeactivity.py
+++ b/shell/model/homeactivity.py
@@ -103,7 +103,7 @@ class HomeActivity(gobject.GObject):
if self._activity_info:
return self._activity_info.icon
else:
- return 'theme:image-missing'
+ return 'image-missing'
def get_icon_color(self):
"""Retrieve the appropriate icon colour for this activity
diff --git a/shell/view/frame/overlaybox.py b/shell/view/frame/overlaybox.py
index f9726e8..bb74f18 100644
--- a/shell/view/frame/overlaybox.py
+++ b/shell/view/frame/overlaybox.py
@@ -24,7 +24,7 @@ class OverlayBox(hippo.CanvasBox):
self._shell = shell
- icon = IconButton(icon_name='theme:stock-chat')
+ icon = IconButton(icon_name='stock-chat')
icon.connect('activated', self._overlay_clicked_cb)
self.append(icon)