Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Quiñones <manuq@laptop.org>2012-10-10 03:20:31 (GMT)
committer Manuel Quiñones <manuq@laptop.org>2012-10-10 03:20:31 (GMT)
commitdf1397dcf6fe849b87db139e8ea3087a5f73649a (patch)
tree3f5566e1fb8ec8e601cbb2db8c86d46cef02adf3
parentf569e7ef981a9c8447ff304eb8d040676390ef7b (diff)
Update toolbar buttons testcase with API change for the icon name
Follow up of fe11a3aa23c0e7fbc3c0c498e147b0a20348cc12 . Signed-off-by: Manuel Quiñones <manuq@laptop.org>
-rw-r--r--tests/graphics/toolbuttons.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/graphics/toolbuttons.py b/tests/graphics/toolbuttons.py
index c4c8cf8..3344cba 100644
--- a/tests/graphics/toolbuttons.py
+++ b/tests/graphics/toolbuttons.py
@@ -19,11 +19,11 @@ toolbar_box = ToolbarBox()
vbox.pack_start(toolbar_box, False, False, 0)
toolbar_box.show()
-radial_button = RadioToolButton(named_icon='view-radial')
+radial_button = RadioToolButton(icon_name='view-radial')
toolbar_box.toolbar.insert(radial_button, -1)
radial_button.show()
-list_button = RadioToolButton(named_icon='view-list')
+list_button = RadioToolButton(icon_name='view-list')
list_button.props.group = radial_button
toolbar_box.toolbar.insert(list_button, -1)
list_button.show()