example.h: Ensure there's no naming clash between constructor parameters & class...
[platform/core/uifw/dali-demo.git] / 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