From 70a63b65ad063ff2cc2b5c3807359c883cebe371 Mon Sep 17 00:00:00 2001 From: Jens Georg Date: Sat, 12 Sep 2009 01:26:19 +0200 Subject: [PATCH] media-export: rename harvest to harvester --- src/plugins/media-export/rygel-media-export-root-container.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/media-export/rygel-media-export-root-container.vala b/src/plugins/media-export/rygel-media-export-root-container.vala index 6a2ccdd..c42f1cf 100644 --- a/src/plugins/media-export/rygel-media-export-root-container.vala +++ b/src/plugins/media-export/rygel-media-export-root-container.vala @@ -146,13 +146,13 @@ public class Rygel.MediaExportRootContainer : Rygel.MediaDBContainer { } private void harvest (File file, MediaContainer parent = this) { - var harvest = new MediaExportHarvester (parent, + var harvester = new MediaExportHarvester (parent, this.media_db, this.extractor, this.monitor); - harvest.harvested.connect (this.on_file_harvested); - this.harvester[file] = harvest; - harvest.harvest (file); + harvester.harvested.connect (this.on_file_harvested); + this.harvester[file] = harvester; + harvester.harvest (file); } private void on_file_changed (File file, -- 2.7.4