1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-30 09:10:53 +02:00

some more work on stations merged

This commit is contained in:
Michael Zanetti
2013-05-19 00:39:29 +02:00
parent 2e3785f92b
commit fcc6f5c966
15 changed files with 396 additions and 123 deletions

View File

@@ -8,7 +8,7 @@ Item {
property int margins: defaultFontHeight * 2
property alias content: contentLoader.source
signal next()
signal next(string text)
Loader {
id: contentLoader
@@ -19,7 +19,7 @@ Item {
Connections {
target: contentLoader.item
onDone: root.next()
onDone: root.next(text)
}
}