media-export: rename harvest to harvester
authorJens Georg <mail@jensge.org>
Fri, 11 Sep 2009 23:26:19 +0000 (01:26 +0200)
committerJens Georg <mail@jensge.org>
Tue, 15 Sep 2009 14:06:37 +0000 (16:06 +0200)
src/plugins/media-export/rygel-media-export-root-container.vala

index 6a2ccdd..c42f1cf 100644 (file)
@@ -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,