From b9f1a55da2b9549e2454557bdd51844a79712f97 Mon Sep 17 00:00:00 2001 From: Philipp Zabel Date: Fri, 6 Aug 2010 18:16:40 +0200 Subject: [PATCH] IMDb download dialog: use new syntax to connect signals --- src/plugins/imdb-download-dialog.vala | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/plugins/imdb-download-dialog.vala b/src/plugins/imdb-download-dialog.vala index 8173c0d..0811b74 100644 --- a/src/plugins/imdb-download-dialog.vala +++ b/src/plugins/imdb-download-dialog.vala @@ -35,9 +35,8 @@ class IMDbDownloadDialog : Note { public new void run (dynamic DBus.Object server, string mirror) { int res; try { - server.Progress += this.on_progress; - server.DescriptionChanged += this.on_description_changed; - + server.Progress.connect (this.on_progress); + server.DescriptionChanged.connect (this.on_description_changed); int flags = IMDbDownloader.MOVIES | IMDbDownloader.GENRES | IMDbDownloader.RATINGS | IMDbDownloader.AKAS; if (plots) flags |= IMDbDownloader.PLOTS; -- 1.7.9.5