IMDb download dialog: use new syntax to connect signals
[cinaest] / src / plugins / imdb-download-dialog.vala
index 8173c0d..0811b74 100644 (file)
@@ -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;