Fixed wrong part name usage
authorJihoon Chung <jihoon.chung@samsaung.com>
Sat, 28 Sep 2013 07:31:17 +0000 (16:31 +0900)
committerHoseon LEE <hoseon46.lee@samsung.com>
Mon, 14 Oct 2013 11:18:56 +0000 (20:18 +0900)
[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

index 50d9eeb..30fc12e 100644 (file)
@@ -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;
 }