summaryrefslogtreecommitdiffstats
path: root/src/otrplugin.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/otrplugin.cpp
parent96f6451b9589e8c26602b466604164770977ab15 (diff)
downloadkopete-otr-b860acda13e142d73b93abc3444dcbd13f04d963.tar.gz
kopete-otr-b860acda13e142d73b93abc3444dcbd13f04d963.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/otrplugin.cpp')
-rw-r--r--src/otrplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/otrplugin.cpp b/src/otrplugin.cpp
index 066d8fc..f1290e1 100644
--- a/src/otrplugin.cpp
+++ b/src/otrplugin.cpp
@@ -222,9 +222,9 @@ void OTRPlugin::slotEnableOtr( Kopete::ChatSession *session, bool enable ){
TQString body = otrlChatInterface->getDefaultQuery( session->account()->accountId() );
Kopete::Message msg1( session->account()->myself(), session->members().getFirst(), TQString( body ), Kopete::Message::Outbound );
if( otrlChatInterface->privState( session ) > 0 ){
- body = i18n("Attempting to refresh the OTR session with <b>%1</b>...").tqarg( otrlChatInterface->formatContact( session->members().getFirst()->contactId() ) );
+ body = i18n("Attempting to refresh the OTR session with <b>%1</b>...").arg( otrlChatInterface->formatContact( session->members().getFirst()->contactId() ) );
} else {
- body = i18n("Attempting to start a private OTR session with <b>%1</b>...").tqarg( otrlChatInterface->formatContact( session->members().getFirst()->contactId() ) );
+ body = i18n("Attempting to start a private OTR session with <b>%1</b>...").arg( otrlChatInterface->formatContact( session->members().getFirst()->contactId() ) );
}
Kopete::Message msg2( session->account()->myself(), session->members().getFirst(), body, Kopete::Message::Internal, Kopete::Message::RichText );