From 5f7fde251bc238ae063f708d3f63d04c602d862d Mon Sep 17 00:00:00 2001 From: Jens Georg Date: Sat, 20 Apr 2013 17:41:09 +0200 Subject: [PATCH] core: Rename C++ keyword --- src/librygel-core/rygel-description-file.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/librygel-core/rygel-description-file.vala b/src/librygel-core/rygel-description-file.vala index 863bded..797561c 100644 --- a/src/librygel-core/rygel-description-file.vala +++ b/src/librygel-core/rygel-description-file.vala @@ -41,12 +41,12 @@ public class Rygel.DescriptionFile : Object { /** * Constructor to load a description file from disk * - * @param template the path to the description file. + * @param template_file the path to the description file. * @throws GUPnP.XMLError.PARSE if there was an error reading or parsing * the file. */ - public DescriptionFile (string template) throws GLib.Error { - this.doc = new XMLDoc.from_path (template); + public DescriptionFile (string template_file) throws GLib.Error { + this.doc = new XMLDoc.from_path (template_file); } /** -- 2.7.4