aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-04-22 17:50:48 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-04-28 15:49:04 +0800
commitdb615a85ec000dab7f73a6d4b1b46428ba4acdee (patch)
tree0ffc36dae8454fcbdcde7fa0d1e616365e87ad29 /ui/qt
parentae4bfc3cfb3f1debad9dd0211950ce09038ffa90 (diff)
downloadgo-tangerine-db615a85ec000dab7f73a6d4b1b46428ba4acdee.tar
go-tangerine-db615a85ec000dab7f73a6d4b1b46428ba4acdee.tar.gz
go-tangerine-db615a85ec000dab7f73a6d4b1b46428ba4acdee.tar.bz2
go-tangerine-db615a85ec000dab7f73a6d4b1b46428ba4acdee.tar.lz
go-tangerine-db615a85ec000dab7f73a6d4b1b46428ba4acdee.tar.xz
go-tangerine-db615a85ec000dab7f73a6d4b1b46428ba4acdee.tar.zst
go-tangerine-db615a85ec000dab7f73a6d4b1b46428ba4acdee.zip
ui/qt/qwhisper, whisper, xeth: polish topic filter, fix wildcards
Diffstat (limited to 'ui/qt')
-rw-r--r--ui/qt/qwhisper/whisper.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/qwhisper/whisper.go b/ui/qt/qwhisper/whisper.go
index b7409c57f..4ab6d2e5a 100644
--- a/ui/qt/qwhisper/whisper.go
+++ b/ui/qt/qwhisper/whisper.go
@@ -106,7 +106,7 @@ func filterFromMap(opts map[string]interface{}) (f whisper.Filter) {
if topicList, ok := opts["topics"].(*qml.List); ok {
var topics []string
topicList.Convert(&topics)
- f.Topics = whisper.NewTopicFilterFromStringsFlat(topics...)
+ f.Topics = whisper.NewFilterTopicsFromStringsFlat(topics...)
}
return