notepad/notepad1/LibSrc/NpdExternalTextEditorDialog.cpp
branchRCL_3
changeset 60 96907930389d
parent 36 9c5b1510919f
child 67 1539a383d7b6
equal deleted inserted replaced
59:aba12c885d83 60:96907930389d
   411 // -----------------------------------------------------------------------------
   411 // -----------------------------------------------------------------------------
   412 // CNotepadExternalTextDialog::DoSearchL
   412 // CNotepadExternalTextDialog::DoSearchL
   413 // -----------------------------------------------------------------------------
   413 // -----------------------------------------------------------------------------
   414 //
   414 //
   415 TInt CNotepadExternalTextDialog::DoSearchL(CFindItemEngine::TFindItemSearchCase aCase)
   415 TInt CNotepadExternalTextDialog::DoSearchL(CFindItemEngine::TFindItemSearchCase aCase)
   416 	{
   416     {
   417 		CFindItemDialog* dialog = CFindItemDialog::NewL( iEditor->Text()->Read(0), aCase );
   417     CFindItemDialog* dialog = CFindItemDialog::NewL( iEditor->Text()->Read(0), aCase );
   418 	    dialog->EnableSingleClick( ETrue );
   418     dialog->EnableSingleClick( ETrue );
   419 	    TInt ret = dialog->ExecuteLD();
   419     dialog->SetCallSubMenuVisibility( EFalse ); // Click-To-Call
   420 	    TBuf<128> test = _L("FI returned: ");
   420     TInt ret = dialog->ExecuteLD();
   421 	    test.AppendNum(ret);
   421     TBuf<128> test = _L("FI returned: ");
   422 	    iEikonEnv->InfoMsg(test);
   422     test.AppendNum(ret);
   423 		return ret;
   423     iEikonEnv->InfoMsg(test);
       
   424     return ret;
   424 	}
   425 	}
   425 	
   426 	
   426 // End of File  
   427 // End of File