Added host keyboard support in audiorecorder
authorrahul varna <rahul.varna@samsung.com>
Mon, 8 Jul 2013 10:37:53 +0000 (16:07 +0530)
committerrahul varna <rahul.varna@samsung.com>
Mon, 8 Jul 2013 10:37:53 +0000 (16:07 +0530)
Signed-off-by: rahul varna <rahul.varna@samsung.com>
project/src/Recorder/AudioRecorderForm.cpp

index 0f9caa7..ec90a59 100644 (file)
@@ -449,6 +449,9 @@ AudioRecorderForm::OnInitializing(void)
        r = __pContextMenu->AddItem("Audio Pre-Processing", ID_MENU_AUDIO_STREAM_CB);
        TryCatch(r == E_SUCCESS, ShowError(r, METHOD_FILE_LINENO),"[%s] __pContextMenu->AddItem Format", GetErrorMessage(r));
 
+       r = __pContextMenu->SetFocusable(true);
+       TryCatch(r == E_SUCCESS, ShowError(r, METHOD_FILE_LINENO),"[%s] __pContextMenu->SetFocusable", GetErrorMessage(r));
+
        __pContextMenu->AddActionEventListener(*this);
 
        __pProgress = static_cast< Progress* >(GetControl(IDC_PROGRESS));