From: Duncan C. <dun...@us...> - 2005-01-08 17:27:36
|
Update of /cvsroot/gtk2hs/gtk2hs/tools/callbackGen In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29378/tools/callbackGen Modified Files: Signal.chs-boot1 Signal.chs-boot2 Log Message: fix module name and imports. Index: Signal.chs-boot1 =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/tools/callbackGen/Signal.chs-boot1,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Signal.chs-boot1 25 May 2004 02:05:10 -0000 1.2 +++ Signal.chs-boot1 8 Jan 2005 17:27:26 -0000 1.3 @@ -43,5 +43,5 @@ -- -- * Check if we need all prototypes mentioned in gtkmarshal.list. -- -module Signal( +module Graphics.UI.Gtk.Signals ( Index: Signal.chs-boot2 =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/tools/callbackGen/Signal.chs-boot2,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Signal.chs-boot2 9 Dec 2004 18:26:03 -0000 1.4 +++ Signal.chs-boot2 8 Jan 2005 17:27:26 -0000 1.5 @@ -5,11 +5,11 @@ ) where import Monad (liftM) -import FFI import Data.IORef -import GObject (objectRef, objectUnref) -import GError (failOnGError) -{#import Hierarchy#} + +import System.Glib.FFI +import System.Glib.GError (failOnGError) +{#import System.Glib.GObject#} hiding (mkDestructor) {#context lib="gtk" prefix="gtk" #} |