aboutsummaryrefslogtreecommitdiffstats
path: root/LayoutHooks.hs
diff options
context:
space:
mode:
authorjoachim.fasting <joachim.fasting@gmail.com>2007-06-20 00:03:23 +0200
committerjoachim.fasting <joachim.fasting@gmail.com>2007-06-20 00:03:23 +0200
commit346cc3269ee31062fa7eb560f90c4059c6279962 (patch)
treed3fce63e93e074dbec7eaa5b261b0d65f8d0219e /LayoutHooks.hs
parentb5826d369dabc893c9fa7bf1a97915c4c7f4967e (diff)
downloadXMonadContrib-346cc3269ee31062fa7eb560f90c4059c6279962.tar.gz
XMonadContrib-346cc3269ee31062fa7eb560f90c4059c6279962.tar.xz
XMonadContrib-346cc3269ee31062fa7eb560f90c4059c6279962.zip
Fix type signatures.
Think this fixes the rest of the errors caused by the Layout change. darcs-hash:20070619220323-ea16c-3274cd24d01bc932089ab88191ccda316ea93b01.gz
Diffstat (limited to 'LayoutHooks.hs')
-rw-r--r--LayoutHooks.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LayoutHooks.hs b/LayoutHooks.hs
index 2261107..9a4a95d 100644
--- a/LayoutHooks.hs
+++ b/LayoutHooks.hs
@@ -20,7 +20,7 @@ import Control.Monad.State ( modify )
import XMonad
import qualified StackSet as W
-install :: (SomeMessage -> X Bool) -> Layout -> Layout
+install :: (SomeMessage -> X Bool) -> Layout a -> Layout a
install hk lay = lay{ modifyLayout = mod' }
where
mod' msg = do reinst <- hk msg