Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPootle Translation <pootle@dev.laptop.org>2008-01-27 23:05:37 (GMT)
committer Pootle Translation <pootle@dev.laptop.org>2008-01-27 23:05:37 (GMT)
commit7185211a65f8294afb453aac3581fa378ad5279b (patch)
tree172aea78ded87b7ed942cd2aff8052f461aa2d9e
parent589cc8850e5ae6bc430a02ff211692e37bbd1d18 (diff)
parentd37e90940c8c8dbcc29a114946e9e4392446e6a7 (diff)
Merge branch 'master' of git+ssh://dev.laptop.org/git/sugar
-rw-r--r--tests/graphics/ticket2855.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/graphics/ticket2855.py b/tests/graphics/ticket2855.py
index f680e95..cc4b3c0 100644
--- a/tests/graphics/ticket2855.py
+++ b/tests/graphics/ticket2855.py
@@ -37,7 +37,7 @@ box = gtk.HBox()
toggle = gtk.ToggleButton()
-icon = Icon('go-previous', icon_size=gtk.ICON_SIZE_LARGE_TOOLBAR)
+icon = Icon(icon_name='go-previous', icon_size=gtk.ICON_SIZE_LARGE_TOOLBAR)
toggle.set_image(icon)
box.pack_start(toggle, False)
@@ -45,7 +45,7 @@ toggle.show()
radio = gtk.RadioButton()
-icon = Icon('go-next', icon_size=gtk.ICON_SIZE_LARGE_TOOLBAR)
+icon = Icon(icon_name='go-next', icon_size=gtk.ICON_SIZE_LARGE_TOOLBAR)
radio.set_image(icon)
radio.set_mode(False)