From fd5459fd2df7e0a6c3b5288b3874a4fed5813202 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sun, 3 Jul 2011 23:35:26 +0000 Subject: [PATCH] Fix kopete-otr FTBFS git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kopete-otr@1239188 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/otrlchatinterface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/otrlchatinterface.cpp b/src/otrlchatinterface.cpp index 65d0df6..f89ebec 100644 --- a/src/otrlchatinterface.cpp +++ b/src/otrlchatinterface.cpp @@ -380,7 +380,7 @@ int OtrlChatInterface::decryptMessage( TQString *msg, TQString accountId, if( newMessage != NULL ){ *msg = TQString::fromUtf8(newMessage); otrl_message_free( newMessage ); - msg->tqreplace( TQString('\n'), TQString("
"), false ); + msg->tqreplace( TQString("\n"), TQString("
"), false ); } } return ignoremessage; @@ -391,7 +391,7 @@ TQString OtrlChatInterface::encryptMessage( TQString msg, TQString accountId, int err; char * newMessage; if( otrl_proto_message_type( msg ) == OTRL_MSGTYPE_NOTOTR ){ - msg.tqreplace( TQString('<'), TQString("<"), false ); + msg.tqreplace( TQString("<"), TQString("<"), false ); err = otrl_message_sending( userstate, &ui_ops, chatSession, accountId.latin1(), protocol.latin1(), contactId.latin1(), msg.utf8(), NULL, &newMessage, NULL, NULL ); if( err != 0 ){