diffing dir...
Fri Jul 13 18:35:24 BST 2012 ult...@gm...
* Make functions in Calendar.chs not return True pointlessly.
Ignore-this: a839dab81b7504ff8026922a1044fc99
Gtk2 returns booleans here for historical reasons, we should not perpetuate
this behaviour (which is dropped in Gtk3).
hunk ./gtk/Graphics/UI/Gtk/Misc/Calendar.chs 150
- -> IO Bool -- ^ returns @True@, always
+ -> IO ()
hunk ./gtk/Graphics/UI/Gtk/Misc/Calendar.chs 152
- liftM toBool $
+ liftM (const ()) $
hunk ./gtk/Graphics/UI/Gtk/Misc/Calendar.chs 173
- -> IO Bool -- ^ returns @True@, always
+ -> IO ()
hunk ./gtk/Graphics/UI/Gtk/Misc/Calendar.chs 175
- liftM toBool $
+ liftM (const ()) $
hunk ./gtk/Graphics/UI/Gtk/Misc/Calendar.chs 184
- -> IO Bool -- ^ returns @True@, always
+ -> IO ()
hunk ./gtk/Graphics/UI/Gtk/Misc/Calendar.chs 186
- liftM toBool $
+ liftM (const ()) $
|