fix RequestUpdate problem that argument isn't delivered.
authorjungmin76.park <jungmin76.park@samsung.com>
Tue, 12 Feb 2013 05:56:31 +0000 (14:56 +0900)
committerjungmin76.park <jungmin76.park@samsung.com>
Tue, 12 Feb 2013 07:59:51 +0000 (16:59 +0900)
Change-Id: If6a7dd23af9c21ca88a6aada0e94aa68ab029c9e
Signed-off-by: jungmin76.park <jungmin76.park@samsung.com>
src/FShell_LiveboxContext.cpp

index 5178dd7..00c37d1 100644 (file)
@@ -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());
 }