From 84a449cfc63691960446dabad8e031a7db1ac37d Mon Sep 17 00:00:00 2001 From: Jihoon Chung Date: Sat, 28 Sep 2013 16:31:17 +0900 Subject: [PATCH] Fixed wrong part name usage [Issue#] N/A [Problem] Certificate confirm popup check wrong part name. It will be caused get wrong check box status. [Cause] Miss-typo. [Solution] Change part name: "elm.swallow.end" -> "elm.swallow.checkbox" [SCMRequest] N/A Change-Id: I28cefd8df0655a1c4768e9c7cb9ff742fc2f29ce --- src/view/common/view_logic_certificate_support.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/common/view_logic_certificate_support.cpp b/src/view/common/view_logic_certificate_support.cpp index 50d9eeb..30fc12e 100644 --- a/src/view/common/view_logic_certificate_support.cpp +++ b/src/view/common/view_logic_certificate_support.cpp @@ -158,7 +158,7 @@ Evas_Object* CertificateSupportUtil::getCheck(Evas_Object* popup) } Evas_Object* check = elm_object_part_content_get( elm_object_content_get(popup), - "elm.swallow.end"); + "elm.swallow.checkbox"); return check; } -- 2.7.4