From 6e1c97d38384087e4b8a00b314cc917a4e2c2e7d Mon Sep 17 00:00:00 2001 From: Himanshu Date: Thu, 18 Jul 2013 10:29:15 +0530 Subject: [PATCH] Fixed issue 46761 Change-Id: I4f73dcb9e163e179397c533867b7584fee8241ba Signed-off-by: Himanshu --- inc/GlFileListForm.h | 6 ------ src/GlFileListForm.cpp | 12 +----------- 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/inc/GlFileListForm.h b/inc/GlFileListForm.h index 45d3536..3857118 100644 --- a/inc/GlFileListForm.h +++ b/inc/GlFileListForm.h @@ -22,7 +22,6 @@ #ifndef _GL_FILE_LIST_FORM_H_ #define _GL_FILE_LIST_FORM_H_ -#include #include #include "GlFormContentUpdateEventListener.h" #include "GlSlideSettingListener.h" @@ -34,7 +33,6 @@ class SlideShowPopUp; class FileListForm : public IFormContentUpdateEventListener , public ISlideSettingListener - , public Tizen::App::IAppControlResponseListener , public Tizen::Ui::IActionEventListener , public Tizen::Ui::Controls::Form , public Tizen::Ui::Controls::IFormBackEventListener @@ -61,10 +59,6 @@ public: virtual void OnFormMenuRequested (Tizen::Ui::Controls::Form &source); - virtual void OnAppControlCompleteResponseReceived(const Tizen::App::AppId& appId, - const Tizen::Base::String& operationId, Tizen::App::AppCtrlResult appControlResult, - const Tizen::Base::Collection::IMap* pExtraData); - void SetMenuState(bool state); private: diff --git a/src/GlFileListForm.cpp b/src/GlFileListForm.cpp index 9c91119..e4a47d9 100644 --- a/src/GlFileListForm.cpp +++ b/src/GlFileListForm.cpp @@ -173,7 +173,7 @@ FileListForm::OnActionPerformed(const Control& source, int actionId) pDataList->Construct(); pDataList->Add(new (std::nothrow) String(APPCONTROL_KEY_CAMERA_ALLOW_SWITCH), new (std::nothrow) String(APPCONTROL_DATA_TRUE)); __pPresentationModel->StartAppControl(APPCONTROL_PROVIDER_ID_CAMERA, APPCONTROL_OPERATION_ID_CREATE_CONTENT, - null, new (std::nothrow) String(APPCONTROL_MIME_IMAGE_JPG), pDataList, this); + null, new (std::nothrow) String(APPCONTROL_MIME_IMAGE_JPG), pDataList, null); } break; @@ -345,13 +345,3 @@ FileListForm::OnFormMenuRequested (Tizen::Ui::Controls::Form &source) } } -void -FileListForm::OnAppControlCompleteResponseReceived(const AppId& appId, const Tizen::Base::String& operationId, - AppCtrlResult appControlResult, const Tizen::Base::Collection::IMap* pExtraData) -{ - AppLogDebug("OnAppControlCompleteResponseReceived : %d", appControlResult); - - GalleryApp* pGalleryApp = static_cast(GalleryApp::GetInstance()); - TryReturnVoid(pGalleryApp != null, "pGalleryApp is null"); - pGalleryApp->SetFrameEnabled(true); -} -- 2.7.4