From: Zeeshan Ali (Khattak) Date: Tue, 26 Jan 2010 14:53:24 +0000 (+0200) Subject: core: Use 'this' keyword for more readable code X-Git-Tag: RYGEL_0_5_0~56 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9a16fca75409c2eaa2009d946c4411908a6127ae;p=profile%2Fivi%2Frygel.git core: Use 'this' keyword for more readable code --- 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);