diff options
author | David Roundy <droundy@darcs.net> | 2007-09-20 23:05:27 +0200 |
---|---|---|
committer | David Roundy <droundy@darcs.net> | 2007-09-20 23:05:27 +0200 |
commit | 76577a21c4a670e133b64eddf7c4e72846492cf5 (patch) | |
tree | 8abb504c7a5657adb476c25980ef247e19527d8c | |
parent | ad7a15a96a994335eecd11efdf5a72b4f1914f67 (diff) | |
download | xmonad-76577a21c4a670e133b64eddf7c4e72846492cf5.tar.gz xmonad-76577a21c4a670e133b64eddf7c4e72846492cf5.tar.xz xmonad-76577a21c4a670e133b64eddf7c4e72846492cf5.zip |
remove unneeded Ord constraint.
darcs-hash:20070920210527-72aca-d8e4535b8c015a30c5c274ad12629e891a8eaec2.gz
-rw-r--r-- | StackSet.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/StackSet.hs b/StackSet.hs index 501e99f..e6c2433 100644 --- a/StackSet.hs +++ b/StackSet.hs @@ -463,7 +463,7 @@ delete w = sink w . delete' w -- | Only temporarily remove the window from the stack, thereby not destroying special -- information saved in the Stackset -delete' :: (Ord a, Eq s) => a -> StackSet i a s sd -> StackSet i a s sd +delete' :: (Eq a, Eq s) => a -> StackSet i a s sd -> StackSet i a s sd delete' w s = s { current = removeFromScreen (current s) , visible = map removeFromScreen (visible s) , hidden = map removeFromWorkspace (hidden s) } |