From 758b6d0fd474835662ab0a9f6c301cc0fa00fdcd Mon Sep 17 00:00:00 2001 From: "jungmin76.park" Date: Tue, 12 Feb 2013 14:56:31 +0900 Subject: [PATCH] fix RequestUpdate problem that argument isn't delivered. Change-Id: If6a7dd23af9c21ca88a6aada0e94aa68ab029c9e Signed-off-by: jungmin76.park --- src/FShell_LiveboxContext.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/FShell_LiveboxContext.cpp b/src/FShell_LiveboxContext.cpp index 5178dd7..00c37d1 100644 --- a/src/FShell_LiveboxContext.cpp +++ b/src/FShell_LiveboxContext.cpp @@ -54,6 +54,7 @@ const String LIVEBOX_ON_TOUCH(L"Livebox='event=touch'"); const String ARG_KEY_WIDTH = L"_Width"; const String ARG_KEY_HEIGHT = L"_Height"; +const String ARG_KEY_ARGUMENT = L"_Argument"; const String ARG_KEY_EVENT_TYPE = L"_EventType"; const String ARG_KEY_TIME_STAMP = L"_TimeStamp"; const String ARG_KEY_X = L"_X"; @@ -187,6 +188,7 @@ _LiveboxContext::SendUpdateRequest(int width, int height, const String& argument pArgs->Add(new String(ARG_KEY_WIDTH), new String(Integer::ToString(width))); pArgs->Add(new String(ARG_KEY_HEIGHT), new String(Integer::ToString(height))); + pArgs->Add(new String(ARG_KEY_ARGUMENT), new String(argument)); return SendRequestToApp( __appId, LIVEBOX_ON_UPDATE, pArgs.get()); } -- 2.7.4