Custom Query (152 matches)
Results (1 - 3 of 152)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #5 | fixed | gtk2hs-0.9.10 compilation fails with GHC 6.4.1 and 6.5.x | somebody | geoffw@… |
| description |
I get the same sort of errors with either version of GHC /usr/local/bin/ghc -c glib/System/Glib/hsgclosure.c -o glib/System/Glib/hsgclosure.o -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -optc-Werror-implicit-function-declaration -optc-g -optc-O2 glib/System/Glib/hsgclosure.c: In function ‘gtk2hs_closure_marshal’: glib/System/Glib/hsgclosure.c:99:0:
glib/System/Glib/hsgclosure.c:99:0:
glib/System/Glib/hsgclosure.c:105:0:
glib/System/Glib/hsgclosure.c:105:0:
glib/System/Glib/hsgclosure.c:105:0:
glib/System/Glib/hsgclosure.c:105:0:
glib/System/Glib/hsgclosure.c:112:0:
glib/System/Glib/hsgclosure.c:121:0:
glib/System/Glib/hsgclosure.c: In function ‘gtk2hs_value_as_haskellobj’: glib/System/Glib/hsgclosure.c:150:0:
glib/System/Glib/hsgclosure.c:154:0:
glib/System/Glib/hsgclosure.c:154:0:
glib/System/Glib/hsgclosure.c:156:0:
glib/System/Glib/hsgclosure.c:156:0:
glib/System/Glib/hsgclosure.c:158:0:
glib/System/Glib/hsgclosure.c:158:0:
glib/System/Glib/hsgclosure.c:160:0:
glib/System/Glib/hsgclosure.c:160:0:
glib/System/Glib/hsgclosure.c:162:0:
glib/System/Glib/hsgclosure.c:162:0:
glib/System/Glib/hsgclosure.c:164:0:
glib/System/Glib/hsgclosure.c:164:0:
glib/System/Glib/hsgclosure.c:166:0:
glib/System/Glib/hsgclosure.c:166:0:
glib/System/Glib/hsgclosure.c:172:0:
glib/System/Glib/hsgclosure.c:172:0:
glib/System/Glib/hsgclosure.c:174:0:
glib/System/Glib/hsgclosure.c:174:0:
glib/System/Glib/hsgclosure.c:176:0:
glib/System/Glib/hsgclosure.c:176:0:
glib/System/Glib/hsgclosure.c:178:0:
glib/System/Glib/hsgclosure.c:178:0:
glib/System/Glib/hsgclosure.c:180:0:
glib/System/Glib/hsgclosure.c:180:0:
glib/System/Glib/hsgclosure.c:182:0:
glib/System/Glib/hsgclosure.c:184:0:
glib/System/Glib/hsgclosure.c:188:0:
make[1]: *** [glib/System/Glib/hsgclosure.o] Error 1 make[1]: Leaving directory `/usr/local/src/gtk2hs-0.9.10' make: *** [all] Error 2 |
|||
| #6 | fixed | pixbufCopyArea parameters are swapped | somebody | akamaus@… |
| description |
width and height parameters of pixbufCopyArea seems to be swapped. In gtk_pixbuf_copy_area width(4th) goes before height(5th) and here they are in opposite order: pixbufCopyArea :: Pixbuf ->
Int -> -- src_x
Int -> -- src_y
Int -> -- height !!!
Int -> -- width !!!
Pixbuf -> Int -> Int -> IO ()
|
|||
| #41 | fixed | Add predicates for types of widgets. | somebody | A.Simon@… |
| description |
It would be useful to have predicates for each widget type that can test an object if it is of that type. At the moment we need to use the castTo* functions and catch the error message that is returned if the cast failed. |
|||