tracker: Provide "All" container for each category
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Fri, 4 Dec 2009 18:44:16 +0000 (20:44 +0200)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Fri, 4 Dec 2009 18:44:16 +0000 (20:44 +0200)
src/plugins/tracker/rygel-tracker-music.vala
src/plugins/tracker/rygel-tracker-pictures.vala
src/plugins/tracker/rygel-tracker-videos.vala

index df91abf..736b8dd 100644 (file)
@@ -49,6 +49,10 @@ public class Rygel.TrackerMusic : Rygel.SimpleContainer {
                                                    item_factory,
                                                    key_chain));
         this.add_child (new TrackerTags ("21", this, item_factory));
+        this.add_child (new TrackerSearchContainer ("26",
+                                                    this,
+                                                    "All",
+                                                    item_factory));
     }
 }
 
index dcba0ae..2057d7f 100644 (file)
@@ -38,6 +38,10 @@ public class Rygel.TrackerPictures : Rygel.SimpleContainer {
 
         this.add_child (new TrackerTags ("19", this, item_factory));
         this.add_child (new TrackerYears ("22", this, item_factory));
+        this.add_child (new TrackerSearchContainer ("25",
+                                                    this,
+                                                    "All",
+                                                    item_factory));
     }
 }
 
index 0834aac..b0133ac 100644 (file)
@@ -36,6 +36,10 @@ public class Rygel.TrackerVideos : Rygel.SimpleContainer {
 
         this.add_child (new TrackerTags ("20", this, item_factory));
         this.add_child (new TrackerYears ("23", this, item_factory));
+        this.add_child (new TrackerSearchContainer ("24",
+                                                    this,
+                                                    "All",
+                                                    item_factory));
     }
 }