diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:34:45 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:34:45 -0600 |
commit | 6efceb1cf68e8a942d28bba4be8fa65b2e8f3c71 (patch) | |
tree | 35c87e21025b800ecd5840f96a9638c964e930b8 /kopete/protocols/groupwise/libgroupwise/tests | |
parent | b251e315b57c6665336289a940e9b1d4a179e463 (diff) | |
download | tdenetwork-6efceb1cf68e8a942d28bba4be8fa65b2e8f3c71.tar.gz tdenetwork-6efceb1cf68e8a942d28bba4be8fa65b2e8f3c71.zip |
Rename additional global TQt functions
Diffstat (limited to 'kopete/protocols/groupwise/libgroupwise/tests')
-rw-r--r-- | kopete/protocols/groupwise/libgroupwise/tests/clientstream_test.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kopete/protocols/groupwise/libgroupwise/tests/clientstream_test.cpp b/kopete/protocols/groupwise/libgroupwise/tests/clientstream_test.cpp index 4272d956..7a0c039b 100644 --- a/kopete/protocols/groupwise/libgroupwise/tests/clientstream_test.cpp +++ b/kopete/protocols/groupwise/libgroupwise/tests/clientstream_test.cpp @@ -37,26 +37,26 @@ void ClientStreamTest::slotDoTest() dn.dn = "maeuschen"; dn.server = "reiser.suse.de"; // connect to server - qDebug( "connecting to server "); + tqDebug( "connecting to server "); myTestObject->connectToServer( dn, true ); // fine up to here... } void ClientStreamTest::slotConnected() { - qDebug( "connection is up"); + tqDebug( "connection is up"); } void ClientStreamTest::slotWarning(int warning) { - qDebug( "warning: %i", warning); + tqDebug( "warning: %i", warning); } void ClientStreamTest::slotsend(int layer) { - qDebug( "security layer is up: %i", layer); + tqDebug( "security layer is up: %i", layer); RequestFactory testFactory; // we're not connecting... - qDebug( "sending request" ); + tqDebug( "sending request" ); // send a request TQCString command("login"); Request * firstRequest = testFactory.request( command ); @@ -68,23 +68,23 @@ void ClientStreamTest::slotsend(int layer) lst.append( new Field::SingleField( NM_A_IP_ADDRESS, 0, NMFIELD_TYPE_UTF8, "10.10.11.103" ) ); firstRequest->setFields( lst ); myTestObject->write( firstRequest ); - qDebug( "done"); + tqDebug( "done"); } void ClientStreamTest::slotTLSHandshaken() { - qDebug( "TLS handshake complete" ); + tqDebug( "TLS handshake complete" ); int validityResult = myTLS->certificateValidityResult (); if( validityResult == QCA::TLS::Valid ) { - qDebug( "Certificate is valid, continuing."); + tqDebug( "Certificate is valid, continuing."); // valid certificate, continue myTLSHandler->continueAfterHandshake (); } else { - qDebug( "Certificate is not valid, continuing" ); + tqDebug( "Certificate is not valid, continuing" ); // certificate is not valid, query the user /* if(handleTLSWarning (validityResult, server (), myself()->contactId ()) == KMessageBox::Continue) {*/ |