Update of /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/Display
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11239/gtk/Graphics/UI/Gtk/Display
Modified Files:
Label.chs ProgressBar.chs
Log Message:
various small changes:
Trivial white space changes to better match the generated code.
Minor documentation changes.
Other trivial changes to better match the generated code.
TreeModelSort.chs.pp: since GtkTreeModelSort implementes the GtkTreeModel
interface, make TreeModelSort an instance of TreeModelClass.
ImageMenuItem.chs: relicense to LGPL with permission of Jonas Svensson.
Index: ProgressBar.chs
===================================================================
RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/Display/ProgressBar.chs,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- ProgressBar.chs 25 Feb 2005 01:11:32 -0000 1.3
+++ ProgressBar.chs 25 Feb 2005 22:53:41 -0000 1.4
@@ -24,8 +24,7 @@
-- Stability : provisional
-- Portability : portable (depends on GHC)
--
--- The ProgressBar provides a means for an application to keep the user
--- patient while some time intensive task is going on.
+-- A widget which indicates progress visually.
--
module Graphics.UI.Gtk.Display.ProgressBar (
-- * Description
@@ -98,7 +97,7 @@
--------------------
-- Constructors
--- | Create a new ProgreeBar.
+-- | Creates a new 'ProgressBar'.
--
progressBarNew :: IO ProgressBar
progressBarNew = makeNewObject mkProgressBar $ liftM castPtr $
Index: Label.chs
===================================================================
RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/Display/Label.chs,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Label.chs 25 Feb 2005 01:11:32 -0000 1.3
+++ Label.chs 25 Feb 2005 22:53:41 -0000 1.4
@@ -161,6 +161,7 @@
{#import Graphics.UI.Gtk.Signals#}
import Graphics.UI.Gtk.General.Enums (Justification(..))
import Graphics.UI.Gtk.Pango.Markup
+
{# context lib="gtk" prefix="gtk" #}
--------------------
|