C++ sample bug fix. 68/77668/1
authorWoochan Lee <wc0917.lee@samsung.com>
Thu, 30 Jun 2016 11:47:49 +0000 (20:47 +0900)
committerWoochan Lee <wc0917.lee@samsung.com>
Thu, 30 Jun 2016 11:49:43 +0000 (20:49 +0900)
Page11, 15 has the named NULL.
This duplication makes bug.

Change-Id: Ia34cc1a006f76a32c073b069f8474128f164ce28

src/examples/efl/cpp/page11.h
src/examples/efl/cpp/page15.h

index 7472f42779cfabcc69ceb38b60540a130240fafd..9ec17bfe971b4817af8ac4d299ae7a460f10b351 100644 (file)
@@ -68,6 +68,6 @@ protected:
        }
 
 public:
-       page11() {}
+       page11() : UiStandardView("page11") {}
        ~page11() {}
 };
index a999d3f8f1fbd58934001034214d29539fcbccb2..0eb8db9ba7c6d85fc87ab342e2fc353c971a1dfa 100644 (file)
@@ -43,4 +43,8 @@ protected:
 
                this->setTitleRightBtn(rightBtn);
        }
+
+public:
+       page15() : UiStandardView("page15") {}
+       ~page15(){}
 };