summaryrefslogtreecommitdiffstats
path: root/src/smppopup.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-30 20:09:36 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-30 20:09:36 +0000
commitc54c3c07f612a7e039b015e8a2c4d8ec9ca5e9ff (patch)
tree9252de70e029efb2850bd6ac7508e058651d07eb /src/smppopup.cpp
parentc99e1ecc99f459c847136f51b98d905fcb11dd26 (diff)
downloadkopete-otr-c54c3c07f612a7e039b015e8a2c4d8ec9ca5e9ff.tar.gz
kopete-otr-c54c3c07f612a7e039b015e8a2c4d8ec9ca5e9ff.zip
TQt4 port kopete-otr
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kopete-otr@1238882 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/smppopup.cpp')
-rw-r--r--src/smppopup.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/smppopup.cpp b/src/smppopup.cpp
index a431e10..8ee8623 100644
--- a/src/smppopup.cpp
+++ b/src/smppopup.cpp
@@ -18,7 +18,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-#include "qlabel.h"
+#include "tqlabel.h"
#include "kdebug.h"
#include "klocale.h"
@@ -29,13 +29,13 @@
#include "smppopup.h"
#include "verifypopup.h"
-SMPPopup::SMPPopup(QWidget* parent, const char* name, WFlags fl, ConnContext *context, Kopete::ChatSession *session, bool initiate )
-: SMPPopupUI(parent,name,fl)
+SMPPopup::SMPPopup(TQWidget* tqparent, const char* name, WFlags fl, ConnContext *context, Kopete::ChatSession *session, bool initiate )
+: SMPPopupUI(tqparent,name,fl)
{
this->context = context;
this->session = session;
this->initiate = initiate;
- tlText->setText( i18n("Please enter the secret passphrase to authenticate %1:").arg(OtrlChatInterface::self()->formatContact(session->members().getFirst()->contactId())));
+ tlText->setText( i18n("Please enter the secret passphrase to authenticate %1:").tqarg(OtrlChatInterface::self()->formatContact(session->members().getFirst()->contactId())));
}
SMPPopup::~SMPPopup()