Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
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 /services
parentcf7ff39c5ad7750f71baeded213f04a89470e658 (diff)
Adapt to changes in the icon API.
Diffstat (limited to 'services')
-rw-r--r--services/shell/objecttypeservice.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/services/shell/objecttypeservice.py b/services/shell/objecttypeservice.py
index cfaac33..8a04d61 100644
--- a/services/shell/objecttypeservice.py
+++ b/services/shell/objecttypeservice.py
@@ -30,27 +30,27 @@ class ObjectTypeRegistry(dbus.service.Object):
self._types = {}
- self._add_primitive('Text', _('Text'), 'theme:text-x-generic',
+ self._add_primitive('Text', _('Text'), 'text-x-generic',
['text/plain', 'text/rtf', 'application/pdf',
'application/x-pdf', 'text/html',
'application/vnd.oasis.opendocument.text',
'application/rtf', 'text/rtf'])
- self._add_primitive('Image', _('Image'), 'theme:image-x-generic',
+ self._add_primitive('Image', _('Image'), 'image-x-generic',
['image/png', 'image/gif', 'image/jpeg'])
- self._add_primitive('Audio', _('Audio'), 'theme:audio-x-generic',
+ self._add_primitive('Audio', _('Audio'), 'audio-x-generic',
['audio/ogg'])
- self._add_primitive('Video', _('Video'), 'theme:video-x-generic',
+ self._add_primitive('Video', _('Video'), 'video-x-generic',
['video/ogg', 'application/ogg'])
self._add_primitive('Etoys project', _('Etoys project'),
- 'theme:application-x-squeak-project',
+ 'application-x-squeak-project',
['application/x-squeak-project'])
self._add_primitive('Link', _('Link'),
- 'theme:text-uri-list',
+ 'text-uri-list',
['text/x-moz-url', 'text/uri-list'])
def _add_primitive(self, type_id, name, icon, mime_types):