From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- korn/nntp_proto.cpp | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'korn/nntp_proto.cpp') diff --git a/korn/nntp_proto.cpp b/korn/nntp_proto.cpp index 532ac47a..bc2f8525 100644 --- a/korn/nntp_proto.cpp +++ b/korn/nntp_proto.cpp @@ -21,36 +21,36 @@ #include "account_input.h" -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include -void Nntp_Protocol::configFillGroupBoxes( QStringList* groupBoxes ) const +void Nntp_Protocol::configFillGroupBoxes( TQStringList* groupBoxes ) const { groupBoxes->append( "server" ); groupBoxes->append( "user" ); } -void Nntp_Protocol::configFields( QPtrVector< QWidget >* vector, const QObject*, QPtrList< AccountInput > * result ) const +void Nntp_Protocol::configFields( TQPtrVector< TQWidget >* vector, const TQObject*, TQPtrList< AccountInput > * result ) const { - result->append( new TextInput( (QWidget*)vector->at( 0 ), i18n( "Server" ), TextInput::text, "", "server" ) ); - result->append( new TextInput( (QWidget*)vector->at( 0 ), i18n( "Port" ), 0, 65535, "119", "port" ) ); + result->append( new TextInput( (TQWidget*)vector->at( 0 ), i18n( "Server" ), TextInput::text, "", "server" ) ); + result->append( new TextInput( (TQWidget*)vector->at( 0 ), i18n( "Port" ), 0, 65535, "119", "port" ) ); - result->append( new TextInput( (QWidget*)vector->at( 1 ), i18n( "Username" ), TextInput::text, "", "username" ) ); - result->append( new TextInput( (QWidget*)vector->at( 1 ), i18n( "Password" ), TextInput::password, "", "password" ) ); - result->append( new CheckboxInput( (QWidget*)vector->at( 1 ), i18n( "Save password" ), "true", "savepassword" ) ); - QObject::connect( (QObject*)result->last()->rightWidget(), SIGNAL( toggled( bool ) ), - (QObject*)result->prev()->rightWidget(), SLOT( setEnabled( bool ) ) ); + result->append( new TextInput( (TQWidget*)vector->at( 1 ), i18n( "Username" ), TextInput::text, "", "username" ) ); + result->append( new TextInput( (TQWidget*)vector->at( 1 ), i18n( "Password" ), TextInput::password, "", "password" ) ); + result->append( new CheckboxInput( (TQWidget*)vector->at( 1 ), i18n( "Save password" ), "true", "savepassword" ) ); + TQObject::connect( (TQObject*)result->last()->rightWidget(), TQT_SIGNAL( toggled( bool ) ), + (TQObject*)result->prev()->rightWidget(), TQT_SLOT( setEnabled( bool ) ) ); result->last()->setValue( "false" ); } -void Nntp_Protocol::readEntries( QMap< QString, QString >*, QMap< QString, QString > * ) const +void Nntp_Protocol::readEntries( TQMap< TQString, TQString >*, TQMap< TQString, TQString > * ) const { } -void Nntp_Protocol::writeEntries( QMap< QString, QString >* map ) const +void Nntp_Protocol::writeEntries( TQMap< TQString, TQString >* map ) const { clearFields( map, (KIO_Protocol::Fields)( KIO_Protocol::mailbox | KIO_Protocol::metadata ) ); } -- cgit v1.2.3