notepad/notepad1/LibSrc/NpdExternalTextEditorDialog.cpp
branchRCL_3
changeset 86 ed599363c2d7
parent 66 bd7edf625bdd
equal deleted inserted replaced
78:356f28cd5ca0 86:ed599363c2d7
   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     dialog->SetCallSubMenuVisibility( EFalse ); // Click-To-Call
   419 	    TInt ret = dialog->ExecuteLD();
   420     TInt ret = dialog->ExecuteLD();
   420 	    TBuf<128> test = _L("FI returned: ");
   421     TBuf<128> test = _L("FI returned: ");
   421 	    test.AppendNum(ret);
   422     test.AppendNum(ret);
   422 	    iEikonEnv->InfoMsg(test);
   423     iEikonEnv->InfoMsg(test);
   423 		return ret;
   424     return ret;
       
   425 	}
   424 	}
   426 	
   425 	
   427 // End of File  
   426 // End of File