diff options
author | Will Thompson <will.thompson@collabora.co.uk> | 2009-07-08 14:14:23 +0100 |
---|---|---|
committer | Will Thompson <will.thompson@collabora.co.uk> | 2009-07-08 14:14:37 +0100 |
commit | f5fe5c3ca9c9a54d698488e26e49ddc2cc6ac868 (patch) | |
tree | 5c9f35e260fe5216af43b405d7666863b8cfe5ee | |
parent | 61074726fe5c99b540ba36a38d91e84fa9473c34 (diff) | |
parent | e7294ae52063b51cd738de9fb2e9c04bfce4f42c (diff) |
Merge branch 'backwards-compat'
This works on Josh's Fedora laptop, so it's good enough for me.
-rw-r--r-- | Bustle.hs | 4 | ||||
-rw-r--r-- | bustle.cabal | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -259,7 +259,7 @@ displayLog (window, saveItem, nb, layout) filename shapes = do io $ do windowSetTitle window $ filename ++ " — D-Bus Sequence Diagram" - widgetSetSensitive saveItem True + widgetSetSensitivity saveItem True onActivateLeaf saveItem $ saveToPDFDialogue window details layoutSetSize layout (floor width) (floor height) @@ -384,7 +384,7 @@ mkMenuBar window = embedIO $ \r -> do saveItem <- imageMenuItemNewFromStock stockSaveAs menuShellAppend fileMenu saveItem - widgetSetSensitive saveItem False + widgetSetSensitivity saveItem False menuShellAppend fileMenu =<< separatorMenuItemNew diff --git a/bustle.cabal b/bustle.cabal index 754dbef..5d3b03c 100644 --- a/bustle.cabal +++ b/bustle.cabal @@ -6,8 +6,8 @@ License: OtherLicense License-file: LICENSE Author: Will Thompson <will.thompson@collabora.co.uk> Maintainer: Will Thompson <will.thompson@collabora.co.uk> -Build-Depends: haskell98, mtl, cairo, gtk, base, containers, parsec, glib, - filepath, process +Build-Depends: haskell98, mtl, cairo, gtk, base < 4, + containers, parsec, glib, filepath, process Data-files: bustle.png, LICENSE Build-type: Simple Extra-source-files: bustle-dbus-monitor.c, Makefile, README, NEWS, HACKING |