diff options
author | Andrea Rossato <andrea.rossato@unibz.it> | 2007-11-22 14:38:02 +0100 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@unibz.it> | 2007-11-22 14:38:02 +0100 |
commit | 194109bb6f97cd10c4cc0362f489e34582d510a1 (patch) | |
tree | 78adf1bcbe456f82333ad4a196f5f16440310ea9 /XMonad | |
parent | d6a12370fa9cc1d939cede5157ef1dfbc38acf2a (diff) | |
download | XMonadContrib-194109bb6f97cd10c4cc0362f489e34582d510a1.tar.gz XMonadContrib-194109bb6f97cd10c4cc0362f489e34582d510a1.tar.xz XMonadContrib-194109bb6f97cd10c4cc0362f489e34582d510a1.zip |
NamedWindow: Mosaic requires NamedWindow to have a Read instance
darcs-hash:20071122133802-32816-972d0b380b9c18cd80d36600950cd228ab52e697.gz
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Util/NamedWindows.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Util/NamedWindows.hs b/XMonad/Util/NamedWindows.hs index 967095c..a41cce7 100644 --- a/XMonad/Util/NamedWindows.hs +++ b/XMonad/Util/NamedWindows.hs @@ -36,7 +36,7 @@ import XMonad -- See "XMonad.Layout.Tabbed" for an example of its use. -data NamedWindow = NW !String !Window +data NamedWindow = NW !String !Window deriving ( Read ) instance Eq NamedWindow where (NW s _) == (NW s' _) = s == s' instance Ord NamedWindow where |