Skip to content

Commit d8d9111

Browse files
author
Mitsutoshi Aoe
committed
Fix warnings about unused imports
1 parent 39d6823 commit d8d9111

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

GUI/App.hs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@
88

99
module GUI.App (initApp) where
1010

11-
-- Imports for GTK
12-
import qualified Graphics.UI.Gtk as Gtk
13-
1411
-- Mac OS X-specific GTK imports
1512
#if defined(darwin_HOST_OS)
13+
import qualified Graphics.UI.Gtk as Gtk
1614
import qualified Graphics.UI.Gtk.OSX as OSX
1715
#endif
1816

GUI/Main.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import System.Glib.GError (failOnGError)
77

88
-- Imports from Haskell library
99
import Text.Printf
10-
import Control.Monad
1110
#ifndef mingw32_HOST_OS
1211
import System.Posix
1312
#endif

GUI/ProgressView.hs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ import qualified Control.Concurrent as Concurrent
1717
import Control.Exception
1818
import Data.Typeable
1919

20-
import Prelude hiding (catch)
21-
22-
2320
data ProgressView = ProgressView {
2421
progressWindow :: Gtk.Window,
2522
progressLabel :: Gtk.Label,

0 commit comments

Comments
 (0)