rygel r590 - trunk/src/plugins/tracker



Author: zeeshanak
Date: Sat Feb 14 15:31:21 2009
New Revision: 590
URL: http://svn.gnome.org/viewvc/rygel?rev=590&view=rev

Log:
results list should be able to container any AsyncResult.

Modified:
   trunk/src/plugins/tracker/rygel-tracker-container.vala

Modified: trunk/src/plugins/tracker/rygel-tracker-container.vala
==============================================================================
--- trunk/src/plugins/tracker/rygel-tracker-container.vala	(original)
+++ trunk/src/plugins/tracker/rygel-tracker-container.vala	Sat Feb 14 15:31:21 2009
@@ -48,7 +48,7 @@
     /* UPnP class of items under this container */
     public string child_class;
 
-    Gee.List<TrackerSearchResult> results;
+    Gee.List<AsyncResult> results;
 
     public TrackerContainer (string id,
                              string parent_id,
@@ -85,7 +85,7 @@
         this.child_count = this.get_children_count ();
 
 
-        this.results = new Gee.ArrayList<TrackerSearchResult>();
+        this.results = new Gee.ArrayList<AsyncResult>();
     }
 
     private uint get_children_count () {



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