Update of /cvsroot/htoolkit/gio/src/Graphics/UI/GIO
In directory sc8-pr-cvs1:/tmp/cvs-serv25672/src/Graphics/UI/GIO
Modified Files:
Window.hs Canvas.hs
Log Message:
Explicitly import when function from Control.Monad
Index: Window.hs
===================================================================
RCS file: /cvsroot/htoolkit/gio/src/Graphics/UI/GIO/Window.hs,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** Window.hs 31 Mar 2003 00:12:06 -0000 1.10
--- Window.hs 12 Apr 2003 07:30:58 -0000 1.11
***************
*** 24,27 ****
--- 24,28 ----
import Graphics.UI.GIO.Canvas
import Graphics.UI.GIO.Layout
+ import Control.Monad( when )
{--------------------------------------------------------------------
Index: Canvas.hs
===================================================================
RCS file: /cvsroot/htoolkit/gio/src/Graphics/UI/GIO/Canvas.hs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Canvas.hs 7 Apr 2003 21:03:09 -0000 1.6
--- Canvas.hs 12 Apr 2003 07:30:58 -0000 1.7
***************
*** 71,74 ****
--- 71,75 ----
import Graphics.UI.GIO.Attributes
import Graphics.UI.GIO.Bitmap
+ import Control.Monad( when )
{--------------------------------------------------------------------
|