summaryrefslogtreecommitdiffstats
path: root/src/verifypopup.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:03 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:03 -0600
commitb860acda13e142d73b93abc3444dcbd13f04d963 (patch)
tree8c0371777f4991e2902b1cbcbc2876795e75279b /src/verifypopup.cpp
parent96f6451b9589e8c26602b466604164770977ab15 (diff)
downloadkopete-otr-b860acda13e142d73b93abc3444dcbd13f04d963.tar.gz
kopete-otr-b860acda13e142d73b93abc3444dcbd13f04d963.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/verifypopup.cpp')
-rw-r--r--src/verifypopup.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/verifypopup.cpp b/src/verifypopup.cpp
index 2fc7bc8..c7550e0 100644
--- a/src/verifypopup.cpp
+++ b/src/verifypopup.cpp
@@ -36,9 +36,9 @@ VerifyPopup::VerifyPopup(TQWidget* parent, const char* name, Kopete::ChatSession
: VerifyPopupUI(parent,name, modal,fl)
{
this->session = session;
- alContact->setText(i18n("Verify fingerprint for %1.").tqarg(OtrlChatInterface::self()->formatContact(session->members().getFirst()->contactId())));
- alFingerprint->setText(i18n("The received fingerprint is:\n\n%1\n\nContact %2 via another secure channel and verify that this fingerprint is correct.").tqarg(OtrlChatInterface::self()->findActiveFingerprint(session)).tqarg(OtrlChatInterface::self()->formatContact(session->members().getFirst()->contactId())));
- alVerified->setText(i18n("verified that this is in fact the correct fingerprint for %1").tqarg(OtrlChatInterface::self()->formatContact(session->members().getFirst()->contactId())));
+ alContact->setText(i18n("Verify fingerprint for %1.").arg(OtrlChatInterface::self()->formatContact(session->members().getFirst()->contactId())));
+ alFingerprint->setText(i18n("The received fingerprint is:\n\n%1\n\nContact %2 via another secure channel and verify that this fingerprint is correct.").arg(OtrlChatInterface::self()->findActiveFingerprint(session)).arg(OtrlChatInterface::self()->formatContact(session->members().getFirst()->contactId())));
+ alVerified->setText(i18n("verified that this is in fact the correct fingerprint for %1").arg(OtrlChatInterface::self()->formatContact(session->members().getFirst()->contactId())));
cbVerify->insertItem(i18n("I have not"));
cbVerify->insertItem(i18n("I have"));
if( OtrlChatInterface::self()->isVerified(session)){