rygel r606 - trunk/src/rygel



Author: zeeshanak
Date: Mon Feb 16 17:32:59 2009
New Revision: 606
URL: http://svn.gnome.org/viewvc/rygel?rev=606&view=rev

Log:
All containers gets an update_id of 0 at creation.

Modified:
   trunk/src/rygel/rygel-media-container.vala

Modified: trunk/src/rygel/rygel-media-container.vala
==============================================================================
--- trunk/src/rygel/rygel-media-container.vala	(original)
+++ trunk/src/rygel/rygel-media-container.vala	Mon Feb 16 17:32:59 2009
@@ -40,13 +40,12 @@
         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;
     }
 
     /**



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]