From aa5b928d4ba30da2a9f0403fa0f0f3e379cec439 Mon Sep 17 00:00:00 2001
From: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>
Date: Thu, 16 May 2019 16:47:58 +0800
Subject: fix simple-egl compile error

Because constant key values which defined in libhomescreen.hpp was deleted,
so no longer use these key word in simple-egl.

related: https://gerrit.automotivelinux.org/gerrit/#/c/20215/
Bug-AGL: SPEC-2188

Change-Id: I89d3ef0fb2e8ed02ec86a14b0368ca946cdf6d49
Signed-off-by: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>
---
 sample/simple-egl/src/simple-egl.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sample/simple-egl/src/simple-egl.cpp b/sample/simple-egl/src/simple-egl.cpp
index aa6ea19..58d8ba4 100644
--- a/sample/simple-egl/src/simple-egl.cpp
+++ b/sample/simple-egl/src/simple-egl.cpp
@@ -572,12 +572,12 @@ init_hs(LibHomeScreen* hs){
 	hs->set_event_handler(LibHomeScreen::Event_ShowWindow, [hs](json_object *object){
 		HMI_DEBUG("simple-egl","try to activeWindow %s ", app_name.c_str());
 
-		struct json_object *param_obj = json_object_object_get(object, hs->_keyParameter);
+		struct json_object *param_obj = json_object_object_get(object, "parameter");
 		const char *area = json_object_get_string(
-			json_object_object_get(param_obj, hs->_keyArea));
+			json_object_object_get(param_obj, "area"));
 		// Application should call LibWindowmanager::activateWindow() in showWindow handler
 		if(area == nullptr)
-			wm->activateWindow(main_role, hs->_areaNormal);
+			wm->activateWindow(main_role, "normal.full");
 		else
 			wm->activateWindow(main_role, area);
 	});
-- 
cgit