From abcfc65bc9446aaa427a01b0123454d2eb99576c Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Sun, 15 Jun 2008 20:16:36 +0000 Subject: [PATCH] Correcting canvas typo in draw-overview.scrbl. svn: r10273 --- collects/scribblings/gui/draw-overview.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/gui/draw-overview.scrbl b/collects/scribblings/gui/draw-overview.scrbl index 3ea9b91cff..4868ffaa1e 100644 --- a/collects/scribblings/gui/draw-overview.scrbl +++ b/collects/scribblings/gui/draw-overview.scrbl @@ -261,8 +261,8 @@ More complex shapes are typically best implemented with (send dc #,(:: dc<%> set-origin) 5 5) (send dc #,(:: dc<%> set-scale) 0.5 0.5) (paint-plt dc))])) -(send c canvas::min-client-width (/ 650 2)) -(send c canvas::min-client-height (/ 650 2)) +(send c #,(:: canvas<%> min-client-width) (/ 650 2)) +(send c #,(:: canvas<%> min-client-height) (/ 650 2)) (send f show #t) ])