summaryrefslogtreecommitdiffstats
path: root/korn/nntp_proto.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korn/nntp_proto.cpp')
-rw-r--r--korn/nntp_proto.cpp32
1 files changed, 16 insertions, 16 deletions
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 <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 ) );
}