Lines Matching refs:targetContact

57     void otrSessionStarted(ChatWidget *widget, const Tp::ContactPtr &targetContact, bool verified)  in otrSessionStarted()  argument
59 KNotification *notification = prepareNotification(widget, targetContact); in otrSessionStarted()
61 … notification->setText(i18n("Private OTR session started with %1", targetContact->alias())); in otrSessionStarted()
63 … notification->setText(i18n("Unverified OTR session started with %1", targetContact->alias())); in otrSessionStarted()
74 void otrSessionFinished(ChatWidget *widget, const Tp::ContactPtr &targetContact) in otrSessionFinished() argument
76 KNotification *notification = prepareNotification(widget, targetContact); in otrSessionFinished()
77 notification->setText(i18n("Finished OTR session with %1", targetContact->alias())); in otrSessionFinished()
86 void authenticationRequested(QWidget *widget, const Tp::ContactPtr &targetContact) in authenticationRequested() argument
88 KNotification *notification = prepareNotification(widget, targetContact); in authenticationRequested()
89 notification->setText(i18n("%1 has requested your authentication", targetContact->alias())); in authenticationRequested()
99 void authenticationConcluded(QWidget *widget, const Tp::ContactPtr &targetContact, bool success) in authenticationConcluded() argument
101 KNotification *notification = prepareNotification(widget, targetContact); in authenticationConcluded()
103 …tification->setText(i18n("Authentication with %1 completed successfully", targetContact->alias())); in authenticationConcluded()
105 notification->setText(i18n("Authentication with %1 failed", targetContact->alias())); in authenticationConcluded()
116 void authenticationAborted(QWidget *widget, const Tp::ContactPtr &targetContact) in authenticationAborted() argument
118 KNotification *notification = prepareNotification(widget, targetContact); in authenticationAborted()
119 notification->setText(i18n("Authentication with %1 was aborted", targetContact->alias())); in authenticationAborted()
129 void authenticationFailed(QWidget *widget, const Tp::ContactPtr &targetContact) in authenticationFailed() argument
131 KNotification *notification = prepareNotification(widget, targetContact); in authenticationFailed()
132 notification->setText(i18n("Authentication with %1 failed", targetContact->alias())); in authenticationFailed()