diff options
author | Andrea Rossato <andrea.rossato@ing.unitn.it> | 2007-11-04 12:11:11 +0100 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@ing.unitn.it> | 2007-11-04 12:11:11 +0100 |
commit | 7e98a6e8d47d84b6501c844e30c40b1ae0762e87 (patch) | |
tree | cbefd3f03f45381a05f3ddae9ea31fb15f72bb5d | |
parent | 9b3e57397a1c8a6e22a593867cbed392cebb947d (diff) | |
download | xmobar-7e98a6e8d47d84b6501c844e30c40b1ae0762e87.tar.gz xmobar-7e98a6e8d47d84b6501c844e30c40b1ae0762e87.tar.bz2 |
Fixed a compilation issue on non 32bit machines
darcs-hash:20071104111111-d6583-fa2ab025c82b4cb547abeccbc204c491a01f4ed2.gz
-rw-r--r-- | Xmobar.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -152,7 +152,7 @@ setProperties h c d w = do c2 <- internAtom d "ATOM" False v <- internAtom d "_NET_WM_WINDOW_TYPE_DOCK" False changeProperty32 d w a1 c1 propModeReplace $ map fi $ getStrutValues h c - changeProperty32 d w a2 c2 propModeReplace [v] + changeProperty32 d w a2 c2 propModeReplace [fromIntegral v] getStrutValues :: Dimension -> Config -> [Int] getStrutValues h c |