From 54178ae4b9d753db2e561c73156881659ed23384 Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Sun, 26 Oct 2014 20:13:14 +0100 Subject: [PATCH] Add missing connections for list models --- qml/AllEpisodesPage.qml | 1 + qml/EpisodesPage.qml | 1 + qml/Main.qml | 1 + 3 files changed, 3 insertions(+) diff --git a/qml/AllEpisodesPage.qml b/qml/AllEpisodesPage.qml index 2c4bd30..1eb0ca8 100644 --- a/qml/AllEpisodesPage.qml +++ b/qml/AllEpisodesPage.qml @@ -55,6 +55,7 @@ Page { } model: GPodderEpisodeListModel { id: episodesListModel } + GPodderEpisodeListModelConnections {} section.property: 'section' section.delegate: SectionHeader { diff --git a/qml/EpisodesPage.qml b/qml/EpisodesPage.qml index ff1e665..c47510a 100644 --- a/qml/EpisodesPage.qml +++ b/qml/EpisodesPage.qml @@ -60,6 +60,7 @@ Page { } model: GPodderEpisodeListModel { id: episodeListModel } + GPodderEpisodeListModelConnections {} PullDownMenu { MenuItem { diff --git a/qml/Main.qml b/qml/Main.qml index 4ede10a..6bccb2a 100644 --- a/qml/Main.qml +++ b/qml/Main.qml @@ -70,6 +70,7 @@ PodcastsPage { } GPodderPodcastListModel { id: podcastListModel } + GPodderPodcastListModelConnections {} function loadPage(filename, properties, replace) { var component = Qt.createComponent(filename);