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-06-11 20:59:04 (GMT)
committer Marc Maurer <uwog@uwog.net>2007-06-11 20:59:04 (GMT)
commit65c13a533738fa214395151d44f180865f41b8c0 (patch)
treee3efe9dfc26e86ef339fec41dc850be926d215b4 /toolbar.py
parent7fc7da66dd29f7e9c085c54c8179f7c2f52f8af4 (diff)
Remove a trailing ';' evil C++ism (thanks to Simon Schamijer)
Diffstat (limited to 'toolbar.py')
-rw-r--r--toolbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolbar.py b/toolbar.py
index 2434c33..a62c423 100644
--- a/toolbar.py
+++ b/toolbar.py
@@ -75,7 +75,7 @@ class TextToolbar(gtk.Toolbar):
self.insert(separator, -1)
self._font_size_combo = ComboBox()
- self._font_sizes = ['8', '9', '10', '11', '12', '14', '16', '20', '22', '24', '26', '28', '36', '48', '72'];
+ self._font_sizes = ['8', '9', '10', '11', '12', '14', '16', '20', '22', '24', '26', '28', '36', '48', '72']
self._font_size_changed_id = self._font_size_combo.connect('changed', self._font_size_changed_cb)
for i, s in enumerate(self._font_sizes):
self._font_size_combo.append_item(i, s, None)