packages feed

X11 1.6.1.1 → 1.6.1.2

raw patch · 2 files changed

+2/−4 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Graphics.X11.Types: type Atom = Word32
+ Graphics.X11.Types: type Atom = Word64
- Graphics.X11.Types: type Mask = Word32
+ Graphics.X11.Types: type Mask = Word64
- Graphics.X11.Types: type RRCrtc = Word32
+ Graphics.X11.Types: type RRCrtc = Word64
- Graphics.X11.Types: type RRMode = Word32
+ Graphics.X11.Types: type RRMode = Word64
- Graphics.X11.Types: type RROutput = Word32
+ Graphics.X11.Types: type RROutput = Word64
- Graphics.X11.Types: type Time = Word32
+ Graphics.X11.Types: type Time = Word64
- Graphics.X11.Types: type VisualID = Word32
+ Graphics.X11.Types: type VisualID = Word64
- Graphics.X11.Types: type XID = Word32
+ Graphics.X11.Types: type XID = Word64
- Graphics.X11.Types: type XRRModeFlags = Word32
+ Graphics.X11.Types: type XRRModeFlags = Word64
- Graphics.X11.Xlib: type Pixel = Word32
+ Graphics.X11.Xlib: type Pixel = Word64
- Graphics.X11.Xlib.Extras: TextProperty :: CString -> Atom -> CInt -> Word32 -> TextProperty
+ Graphics.X11.Xlib.Extras: TextProperty :: CString -> Atom -> CInt -> Word64 -> TextProperty
- Graphics.X11.Xlib.Extras: tp_nitems :: TextProperty -> Word32
+ Graphics.X11.Xlib.Extras: tp_nitems :: TextProperty -> Word64
- Graphics.X11.Xlib.Types: type Pixel = Word32
+ Graphics.X11.Xlib.Types: type Pixel = Word64

Files

Graphics/X11/Xlib/Atom.hsc view
@@ -89,8 +89,6 @@          ) where -import Control.Monad ( void )- import Graphics.X11.Types import Graphics.X11.Xlib.Internal import Graphics.X11.Xlib.Types@@ -136,7 +134,7 @@     ccharp <- (pooledMallocArray pool $ length atoms) :: IO (Ptr (Ptr CChar))      pokeArray atomsp atoms-    void $ cXGetAtomNames dpy atomsp (fromIntegral $ length atoms :: CInt) ccharp+    _ <- cXGetAtomNames dpy atomsp (fromIntegral $ length atoms :: CInt) ccharp      res <- peekArray (length atoms) ccharp >>= mapM peekCString     peekArray (length atoms) ccharp >>= mapM_ xFree
X11.cabal view
@@ -1,5 +1,5 @@ name:               X11-version:            1.6.1.1+version:            1.6.1.2 license:            BSD3 license-file:       LICENSE copyright:          Alastair Reid, 1999-2003, libraries@haskell.org 2003-2007, Don Stewart 2007-2009, Spencer Janssen 2007-2009, Daniel Wagner 2009-2011.