core: Rename C++ keyword
authorJens Georg <jensg@openismus.com>
Sat, 20 Apr 2013 15:41:09 +0000 (17:41 +0200)
committerJens Georg <jensg@openismus.com>
Tue, 23 Apr 2013 07:46:48 +0000 (09:46 +0200)
src/librygel-core/rygel-description-file.vala

index 863bded..797561c 100644 (file)
@@ -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);
     }
 
     /**