<div dir="ltr">The type of frame according to the documentation is <a name="v:frame" class="">frame</a> :: [<a href="http://hackage.haskell.org/package/wx-0.92.1.0/docs/Graphics-UI-WX-Attributes.html#t:Prop">Prop</a> (<a href="http://hackage.haskell.org/package/wx-0.92.1.0/docs/Graphics-UI-WX-Frame.html#t:Frame">Frame</a> ())] -> <a href="http://hackage.haskell.org/package/base-4.8.1.0/docs/System-IO.html#t:IO">IO</a> (<a href="http://hackage.haskell.org/package/wx-0.92.1.0/docs/Graphics-UI-WX-Frame.html#t:Frame">Frame</a> ()).  Maybe the documentation you are looking at is out of date?<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Nov 21, 2015 at 8:28 AM, Jason J. Corso <span dir="ltr"><<a href="mailto:jjcorso@eecs.umich.edu" target="_blank">jjcorso@eecs.umich.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi:<br>
<br>
I'm new to Haskell and to wxHaskell (but found playing with wxHaskell<br>
to be a nice mid-ground between my years of imperative experience and<br>
the pure functional).  Thanks for the help.<br>
<br>
I wrote the following code to create a set of staticText widgets by<br>
mapping the layout over a list.  Easy enough...<br>
<br>
module Main where<br>
import Graphics.UI.WX<br>
main :: IO ()<br>
main<br>
    = start gui<br>
gui :: IO ()<br>
gui = do<br>
        f <- frame<br>
        let s = map (\t -> staticText f [text := show t]) [1..10]<br>
        set f [layout := margin 10 ( row 2 $ map (\x -> (widget x)) s)]<br>
<br>
<br>
But, I get a type error that I do not understand<br>
<br>
    Couldn't match expected type ‘IO (Window a0)’<br>
                with actual type ‘[Prop (Frame ())] -> IO (Frame ())’<br>
    Probable cause: ‘frame’ is applied to too few arguments<br>
<br>
<br>
Thank you in advance,<br>
Jason<br>
_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners</a><br>
</blockquote></div><br></div>