example.h: Ensure there's no naming clash between constructor parameters & class... 93/258493/1
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Tue, 18 May 2021 16:57:55 +0000 (17:57 +0100)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Tue, 18 May 2021 16:57:55 +0000 (17:57 +0100)
Change-Id: I3525a2d6f09069c27aefd01d21f4b34824431904

shared/example.h

index 858167e..147f244 100644 (file)
@@ -32,12 +32,12 @@ struct Example
   // Constructors\r
 \r
   /**\r
-   * @param[in] name unique name of example\r
-   * @param[in] title The caption for the example to appear on a tile button.\r
+   * @param[in] uniqueName unique name of example\r
+   * @param[in] captionTitle The caption for the example to appear on a tile button.\r
    */\r
-  Example(std::string name, std::string title)\r
-  : name(name),\r
-    title(title)\r
+  Example(std::string uniqueName, std::string captionTitle)\r
+  : name(uniqueName),\r
+    title(captionTitle)\r
   {\r
   }\r
 \r