From b8768fb6dd82816dfb9efcc23f0cb35fc226d3ad Mon Sep 17 00:00:00 2001 From: "Zeeshan Ali (Khattak)" Date: Thu, 12 Nov 2009 18:16:39 +0200 Subject: [PATCH] tracker: Make two method private 'create_item' and 'get_item_info' are now private methods. --- src/plugins/tracker/rygel-tracker-search-container.vala | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/plugins/tracker/rygel-tracker-search-container.vala b/src/plugins/tracker/rygel-tracker-search-container.vala index 1b057b2..321a613 100644 --- a/src/plugins/tracker/rygel-tracker-search-container.vala +++ b/src/plugins/tracker/rygel-tracker-search-container.vala @@ -278,10 +278,10 @@ public class Rygel.TrackerSearchContainer : Rygel.MediaContainer { } } - public MediaItem? create_item (string service, - string path, - string[] metadata) - throws GLib.Error { + private MediaItem? create_item (string service, + string path, + string[] metadata) + throws GLib.Error { var id = service + ":" + this.id + ":" + path; if (service == TrackerVideoItem.SERVICE) { @@ -306,9 +306,9 @@ public class Rygel.TrackerSearchContainer : Rygel.MediaContainer { // Returns the path, ID of the parent and service this item belongs to, or // null item_id is invalid - public string? get_item_info (string item_id, - out string parent_id, - out string service) { + private string? get_item_info (string item_id, + out string parent_id, + out string service) { var tokens = item_id.split (":", 3); if (tokens[0] != null && tokens[1] != null && tokens[2] != null) { -- 2.7.4