[rygel] tracker: Add SearchContainer.query_condition
- From: Zeeshan Ali Khattak <zeeshanak src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [rygel] tracker: Add SearchContainer.query_condition
- Date: Sun, 20 Sep 2009 23:27:52 +0000 (UTC)
commit 1d0b48d8db08b06205f9f7c1c9843b908e7a28dc
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date: Fri Sep 18 18:07:05 2009 +0300
tracker: Add SearchContainer.query_condition
.../tracker/rygel-tracker-search-container.vala | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/src/plugins/tracker/rygel-tracker-search-container.vala b/src/plugins/tracker/rygel-tracker-search-container.vala
index e8ba1e7..5e7c8c4 100644
--- a/src/plugins/tracker/rygel-tracker-search-container.vala
+++ b/src/plugins/tracker/rygel-tracker-search-container.vala
@@ -44,6 +44,8 @@ public abstract class Rygel.TrackerSearchContainer : Rygel.MediaContainer {
public string service;
+ public string query_condition;
+
Gee.List<AsyncResult> results;
public TrackerSearchContainer (string id,
@@ -53,6 +55,7 @@ public abstract class Rygel.TrackerSearchContainer : Rygel.MediaContainer {
base (id, parent, title, 0);
this.service = service;
+ this.query_condition = "";
try {
this.create_proxies ();
@@ -79,7 +82,7 @@ public abstract class Rygel.TrackerSearchContainer : Rygel.MediaContainer {
new string[0],
"",
new string[0],
- "",
+ this.query_condition,
false,
new string[0],
false,
@@ -123,7 +126,7 @@ public abstract class Rygel.TrackerSearchContainer : Rygel.MediaContainer {
this.get_metadata_keys (),
"",
new string[0],
- "",
+ this.query_condition,
false,
new string[0],
false,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]