Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/test-spread-box.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-spread-box.py')
-rwxr-xr-xtests/test-spread-box.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/tests/test-spread-box.py b/tests/test-spread-box.py
index 02aa59c..84a3ae1 100755
--- a/tests/test-spread-box.py
+++ b/tests/test-spread-box.py
@@ -26,7 +26,7 @@ import gobject
import gtk
import hippo
-from sugar.graphics.spreadbox import SpreadBox
+from sugar.graphics.spreadlayout import SpreadLayout
from sugar.graphics.xocolor import XoColor
from sugar.graphics.canvasicon import CanvasIcon
@@ -35,7 +35,7 @@ def _create_icon():
icon = CanvasIcon(scale=1.0, xo_color=color,
icon_name='theme:stock-buddy')
- box.add_item(icon)
+ layout.add(icon)
return (len(box.get_children()) < 20)
@@ -45,7 +45,11 @@ window.show()
canvas = hippo.Canvas()
-box = SpreadBox(background_color=0xe2e2e2ff)
+box = hippo.CanvasBox(background_color=0xe2e2e2ff)
+
+layout = SpreadLayout()
+box.set_layout(layout)
+
canvas.set_root(box)
window.add(canvas)