summaryrefslogtreecommitdiffstats
path: root/korn/pop3_proto.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korn/pop3_proto.cpp')
-rw-r--r--korn/pop3_proto.cpp50
1 files changed, 25 insertions, 25 deletions
diff --git a/korn/pop3_proto.cpp b/korn/pop3_proto.cpp
index 7e88f7fb..b42a63ec 100644
--- a/korn/pop3_proto.cpp
+++ b/korn/pop3_proto.cpp
@@ -23,58 +23,58 @@
#include <kdebug.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 Pop3_Protocol::configFillGroupBoxes( QStringList* groupBoxes ) const
+void Pop3_Protocol::configFillGroupBoxes( TQStringList* groupBoxes ) const
{
groupBoxes->append( "Server" );
groupBoxes->append( "Identify" );
}
-void Pop3_Protocol::configFields( QPtrVector< QWidget >* vector, const QObject* configDialog, QPtrList< AccountInput > * result ) const
+void Pop3_Protocol::configFields( TQPtrVector< TQWidget >* vector, const TQObject* configDialog, TQPtrList< AccountInput > * result ) const
{
- QMap< QString, QString > encrList;
+ TQMap< TQString, TQString > encrList;
encrList.insert( "ssl", i18n( "SSL" ) );
encrList.insert( "tls=auto", i18n( "TLS if possible" ) );
encrList.insert( "tls=on", i18n( "Always TLS" ) );
encrList.insert( "tls=off", i18n( "Never TLS" ) );
- QMap< QString, QString > authList;
+ TQMap< TQString, TQString > authList;
authList.insert( "", i18n( "Plain" ) );
authList.insert( "auth=APOP", i18n( "APOP" ) );
- 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, "110", "port" ) );
- result->append( new ComboInput( (QWidget*)vector->at( 0 ), i18n( "Encryption" ), encrList, "tls=auto", "encryption" ) );
- QObject::connect( (QObject*)result->last()->rightWidget(), SIGNAL( activated( int) ),
- configDialog, SLOT( slotSSLChanged() ) );
+ 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, "110", "port" ) );
+ result->append( new ComboInput( (TQWidget*)vector->at( 0 ), i18n( "Encryption" ), encrList, "tls=auto", "encryption" ) );
+ TQObject::connect( (TQObject*)result->last()->rightWidget(), TQT_SIGNAL( activated( int) ),
+ configDialog, TQT_SLOT( slotSSLChanged() ) );
- 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" );
- result->append( new ComboInput( (QWidget*)vector->at( 1 ), i18n( "Authentication" ), authList, "", "auth" ) );
+ result->append( new ComboInput( (TQWidget*)vector->at( 1 ), i18n( "Authentication" ), authList, "", "auth" ) );
}
-void Pop3_Protocol::readEntries( QMap< QString, QString >* map, QMap< QString, QString > *metadata ) const
+void Pop3_Protocol::readEntries( TQMap< TQString, TQString >* map, TQMap< TQString, TQString > *metadata ) const
{
if( map->contains( "ssl" ) && *map->find( "ssl" ) == "true" )
map->insert( "encryption", "ssl" );
if( metadata->contains( "tls" ) )
- map->insert( "encryption", QString( "tls=%1" ).arg( *metadata->find( "tls" ) ) );
+ map->insert( "encryption", TQString( "tls=%1" ).arg( *metadata->find( "tls" ) ) );
if( metadata->contains( "auth" ) )
- map->insert( "auth", QString( "auth=APOP" ) );
+ map->insert( "auth", TQString( "auth=APOP" ) );
}
-void Pop3_Protocol::writeEntries( QMap< QString, QString >* map ) const
+void Pop3_Protocol::writeEntries( TQMap< TQString, TQString >* map ) const
{
- QString metadata;
+ TQString metadata;
if( map->contains( "encryption" ) )
{
if( *map->find( "encryption" ) == "ssl" )