Lines Matching refs:pDialog
532 std::auto_ptr< PasswordDialog > pDialog( in executePasswordDialog() local
535 pDialog->SetMinLen(0); in executePasswordDialog()
537 … rInfo.SetResult( pDialog->Execute() == RET_OK ? ERRCODE_BUTTON_OK : ERRCODE_BUTTON_CANCEL ); in executePasswordDialog()
538 rInfo.SetPassword( pDialog->GetPassword() ); in executePasswordDialog()
546 std::auto_ptr< AbstractPasswordToOpenModifyDialog > pDialog( pTmp ); in executePasswordDialog() local
548 … rInfo.SetResult( pDialog->Execute() == RET_OK ? ERRCODE_BUTTON_OK : ERRCODE_BUTTON_CANCEL ); in executePasswordDialog()
549 rInfo.SetPassword( pDialog->GetPasswordToOpen() ); in executePasswordDialog()
550 rInfo.SetPasswordToModify( pDialog->GetPasswordToModify() ); in executePasswordDialog()
551 rInfo.SetRecommendToOpenReadonly( pDialog->IsRecommendToOpenReadonly() ); in executePasswordDialog()
556 std::auto_ptr< PasswordDialog > pDialog( in executePasswordDialog() local
559 pDialog->SetMinLen(0); in executePasswordDialog()
561 … rInfo.SetResult( pDialog->Execute() == RET_OK ? ERRCODE_BUTTON_OK : ERRCODE_BUTTON_CANCEL ); in executePasswordDialog()
562 rInfo.SetPassword( bIsPasswordToModify ? String() : pDialog->GetPassword() ); in executePasswordDialog()
563 rInfo.SetPasswordToModify( bIsPasswordToModify ? pDialog->GetPassword() : String() ); in executePasswordDialog()