diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /korn/nntp_proto.cpp | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korn/nntp_proto.cpp')
-rw-r--r-- | korn/nntp_proto.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/korn/nntp_proto.cpp b/korn/nntp_proto.cpp index 532ac47a9..bc2f85251 100644 --- a/korn/nntp_proto.cpp +++ b/korn/nntp_proto.cpp @@ -21,36 +21,36 @@ #include "account_input.h" -#include <qwidget.h> -#include <qobject.h> -#include <qstringlist.h> -#include <qptrvector.h> -#include <qptrlist.h> +#include <tqwidget.h> +#include <tqobject.h> +#include <tqstringlist.h> +#include <tqptrvector.h> +#include <tqptrlist.h> -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 ) ); } |