Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/toolbar.py
diff options
context:
space:
mode:
authorMarc Maurer <uwog@uwog.net>2007-08-27 11:46:07 (GMT)
committer Marc Maurer <uwog@uwog.net>2007-08-27 11:46:07 (GMT)
commite75b9c4430fbd739ecd5f1ca187967148ab796fb (patch)
tree45693c7ca464a1bba09a104f00605c8112787efc /toolbar.py
parentf84a716ab670f07b1d3b053dd0813ba2e6aa553c (diff)
Adapt icon names to the new API
Diffstat (limited to 'toolbar.py')
-rw-r--r--toolbar.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/toolbar.py b/toolbar.py
index 44979e7..661d057 100644
--- a/toolbar.py
+++ b/toolbar.py
@@ -108,13 +108,13 @@ class TextToolbar(gtk.Toolbar):
self._alignment = ComboBox()
self._alignment.append_item(self._ACTION_ALIGNMENT_LEFT, None,
- 'theme:format-justify-left')
+ 'format-justify-left')
self._alignment.append_item(self._ACTION_ALIGNMENT_CENTER, None,
- 'theme:format-justify-center')
+ 'format-justify-center')
self._alignment.append_item(self._ACTION_ALIGNMENT_RIGHT, None,
- 'theme:format-justify-right')
+ 'format-justify-right')
self._alignment.append_item(self._ACTION_ALIGNMENT_JUSTIFY, None,
- 'theme:format-justify-fill')
+ 'format-justify-fill')
self._alignment_changed_id = \
self._alignment.connect('changed', self._alignment_changed_cb)
tool_item = ToolComboBox(self._alignment)