tracker: Minor style fix
authorJens Georg <mail@jensge.org>
Mon, 14 Nov 2011 08:45:22 +0000 (09:45 +0100)
committerJens Georg <mail@jensge.org>
Mon, 14 Nov 2011 08:45:22 +0000 (09:45 +0100)
src/plugins/tracker/rygel-tracker-search-container.vala

index 59c9968..b913c8a 100644 (file)
@@ -59,8 +59,8 @@ public class Rygel.Tracker.SearchContainer : SimpleContainer {
             this.update_id = update_id_hash[this.id];
         }
 
-        this.container_updated.connect ( (_, b) => {
-            if (b == this) {
+        this.container_updated.connect ( (container, origin) => {
+            if (origin == this) {
                 update_id_hash[this.id] = this.update_id;
             }
         });