summaryrefslogtreecommitdiff
path: root/Bustle/UI/FilterDialog.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Bustle/UI/FilterDialog.hs')
-rw-r--r--Bustle/UI/FilterDialog.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Bustle/UI/FilterDialog.hs b/Bustle/UI/FilterDialog.hs
index db9e9ec..cc798fb 100644
--- a/Bustle/UI/FilterDialog.hs
+++ b/Bustle/UI/FilterDialog.hs
@@ -37,10 +37,10 @@ import Graphics.UI.Gtk
import Bustle.Types
formatNames :: (UniqueName, Set OtherName)
- -> Text
+ -> String
formatNames (u, os)
| Set.null os = unUniqueName u
- | otherwise = Text.intercalate "\n" . map unOtherName $ Set.toAscList os
+ | otherwise = intercalate "\n" . map unOtherName $ Set.toAscList os
type NameStore = ListStore (Bool, (UniqueName, Set OtherName))
@@ -82,7 +82,7 @@ makeView nameStore = do
treeViewAppendColumn nameView nameColumn
cellLayoutSetAttributes nameColumn nameCell nameStore $ \(_, ns) ->
- [ cellText := Text.unpack (formatNames ns) ]
+ [ cellText := formatNames ns ]
sw <- scrolledWindowNew Nothing Nothing
scrolledWindowSetPolicy sw PolicyAutomatic PolicyAutomatic