[03:36] I cannot get the tweakgeek project compiled https://code.launchpad.net/tweakgee in my SDK. It complains "fatal error: click.h: No such file or directory" error though I have install libclick-dev 0.4" for the armhf architecture [17:27] hi. when I try to append a dict to a ListModel in qml, It says: "Unable to assign UCLabel to QString". How should I do this? === JanC_ is now known as JanC [19:14] danialbehzadi, sounds like you trying to append the actual Label component and not it's 'text' property value. [19:16] DanChapman: I want to show some text as Item in UbuntuListView. What is the best practice? [19:17] Now I wrote this and it's working, but I'm not satisfied with the output: [19:17] / [19:17] UbuntuListView { [19:17] id: seriesList [19:17] width: parent.width [19:17] height: parent.height [19:17] model: ListModel { [19:17] id: listModel [19:17] } [19:17] delegate: ListItem { [19:17] Text{ [19:17] text: title [19:27] danialbehzadi, you could do it something like this http://paste.ubuntu.com/15377116/ [19:33] DanChapman: Nice, it looks so much better now