summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/tests/kopetepasswordtest_program.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/libkopete/tests/kopetepasswordtest_program.cpp
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/libkopete/tests/kopetepasswordtest_program.cpp')
-rw-r--r--kopete/libkopete/tests/kopetepasswordtest_program.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/kopete/libkopete/tests/kopetepasswordtest_program.cpp b/kopete/libkopete/tests/kopetepasswordtest_program.cpp
index a1f3a50e..51b8908a 100644
--- a/kopete/libkopete/tests/kopetepasswordtest_program.cpp
+++ b/kopete/libkopete/tests/kopetepasswordtest_program.cpp
@@ -17,9 +17,9 @@
#include "kopetepasswordtest_program.h"
#include "kopetepassword.h"
-#include <qtextstream.h>
-#include <qpixmap.h>
-#include <qtimer.h>
+#include <tqtextstream.h>
+#include <tqpixmap.h>
+#include <tqtimer.h>
#include <kaboutdata.h>
#include <kapplication.h>
@@ -28,7 +28,7 @@
#include <kglobal.h>
#include <kstandarddirs.h>
-static QTextStream _out( stdout, IO_WriteOnly );
+static TQTextStream _out( stdout, IO_WriteOnly );
static KCmdLineOptions opts[] =
{
@@ -42,18 +42,18 @@ static KCmdLineOptions opts[] =
using namespace Kopete;
-QString retrieve( Password &pwd, const QPixmap &image, const QString &prompt )
+TQString retrieve( Password &pwd, const TQPixmap &image, const TQString &prompt )
{
PasswordRetriever r;
- pwd.request( &r, SLOT( gotPassword( const QString & ) ), image, prompt );
- QTimer tmr;
- r.connect( &tmr, SIGNAL( timeout() ), SLOT( timer() ) );
+ pwd.request( &r, TQT_SLOT( gotPassword( const TQString & ) ), image, prompt );
+ TQTimer tmr;
+ r.connect( &tmr, TQT_SIGNAL( timeout() ), TQT_SLOT( timer() ) );
tmr.start( 1000 );
qApp->exec();
return r.password;
}
-void PasswordRetriever::gotPassword( const QString &pass )
+void PasswordRetriever::gotPassword( const TQString &pass )
{
password = pass;
qApp->quit();
@@ -74,11 +74,11 @@ int main( int argc, char *argv[] )
KApplication app( "kopetepasswordtest" );
bool setPassword = args->isSet("set");
- QString newPwd = args->getOption("set");
- QString passwordId = args->getOption("id");
+ TQString newPwd = args->getOption("set");
+ TQString passwordId = args->getOption("id");
bool error = args->isSet("error");
- QString prompt = args->getOption("prompt");
- QPixmap image = QString(args->getOption("image"));
+ TQString prompt = args->getOption("prompt");
+ TQPixmap image = TQString(args->getOption("image"));
_out << (image.isNull() ? "image is null" : "image is valid") << endl;
@@ -87,7 +87,7 @@ int main( int argc, char *argv[] )
_out << "Cached value is null: " << pwd.cachedValue().isNull() << endl;
- QString pass = retrieve( pwd, image, prompt );
+ TQString pass = retrieve( pwd, image, prompt );
if ( !pass.isNull() )
_out << "Read password: " << pass << endl;
@@ -101,7 +101,7 @@ int main( int argc, char *argv[] )
if ( newPwd.isEmpty() )
{
_out << "Clearing password" << endl;
- newPwd = QString::null;
+ newPwd = TQString::null;
}
else
{
@@ -112,7 +112,7 @@ int main( int argc, char *argv[] )
// without this, setting passwords will fail since they're
// set asynchronously.
- QTimer::singleShot( 0, &app, SLOT( deref() ) );
+ TQTimer::singleShot( 0, &app, TQT_SLOT( deref() ) );
app.exec();
if ( setPassword )