Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/graphics/ticket2855.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/graphics/ticket2855.py')
-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)