From: Zeeshan Ali (Khattak) Date: Mon, 16 Feb 2009 17:32:59 +0000 (+0000) Subject: All containers gets an update_id of 0 at creation. X-Git-Tag: RYGEL_0_2_2~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b08a71775589fbce259f755d266f71b7d9bff5c4;p=profile%2Fivi%2Frygel.git All containers gets an update_id of 0 at creation. svn path=/trunk/; revision=606 --- diff --git a/src/rygel/rygel-media-container.vala b/src/rygel/rygel-media-container.vala index a44182c..22da4f0 100644 --- a/src/rygel/rygel-media-container.vala +++ b/src/rygel/rygel-media-container.vala @@ -40,13 +40,12 @@ public abstract class Rygel.MediaContainer : MediaObject { this.parent = parent; this.title = title; this.child_count = child_count; - this.update_id = uint32.MAX; // undefined for non-root containers + this.update_id = 0; } public MediaContainer.root (string title, uint child_count) { this ("0", null, title, child_count); - this.update_id = 0; } /**