From 9a16fca75409c2eaa2009d946c4411908a6127ae Mon Sep 17 00:00:00 2001 From: "Zeeshan Ali (Khattak)" Date: Tue, 26 Jan 2010 16:53:24 +0200 Subject: [PATCH] core: Use 'this' keyword for more readable code --- src/rygel/rygel-http-item-uri.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/rygel/rygel-http-item-uri.vala b/src/rygel/rygel-http-item-uri.vala index 68d04ec..4c2dfb2 100644 --- a/src/rygel/rygel-http-item-uri.vala +++ b/src/rygel/rygel-http-item-uri.vala @@ -81,11 +81,11 @@ internal class Rygel.HTTPItemURI : Object { true); string path = "/item/" + escaped; - if (transcode_target != null) { - escaped = Uri.escape_string (transcode_target, "", true); + if (this.transcode_target != null) { + escaped = Uri.escape_string (this.transcode_target, "", true); path += "/transcoded/" + escaped; - } else if (thumbnail_index >= 0) { - path += "/thumbnail/" + thumbnail_index.to_string (); + } else if (this.thumbnail_index >= 0) { + path += "/thumbnail/" + this.thumbnail_index.to_string (); } return this.create_uri_for_path (path); -- 2.7.4