diff options
Diffstat (limited to 'kabc/plugins/net/resourcenetconfig.cpp')
-rw-r--r-- | kabc/plugins/net/resourcenetconfig.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kabc/plugins/net/resourcenetconfig.cpp b/kabc/plugins/net/resourcenetconfig.cpp index ef5bfdcb9..b441fbd98 100644 --- a/kabc/plugins/net/resourcenetconfig.cpp +++ b/kabc/plugins/net/resourcenetconfig.cpp @@ -18,8 +18,8 @@ Boston, MA 02110-1301, USA. */ -#include <qlabel.h> -#include <qlayout.h> +#include <tqlabel.h> +#include <tqlayout.h> #include <kdebug.h> #include <klocale.h> @@ -33,19 +33,19 @@ using namespace KABC; -ResourceNetConfig::ResourceNetConfig( QWidget* parent, const char* name ) +ResourceNetConfig::ResourceNetConfig( TQWidget* parent, const char* name ) : ConfigWidget( parent, name ), mInEditMode( false ) { - QGridLayout *mainLayout = new QGridLayout( this, 2, 2, 0, + TQGridLayout *mainLayout = new TQGridLayout( this, 2, 2, 0, KDialog::spacingHint() ); - QLabel *label = new QLabel( i18n( "Format:" ), this ); + TQLabel *label = new TQLabel( i18n( "Format:" ), this ); mFormatBox = new KComboBox( this ); mainLayout->addWidget( label, 0, 0 ); mainLayout->addWidget( mFormatBox, 0, 1 ); - label = new QLabel( i18n( "Location:" ), this ); + label = new TQLabel( i18n( "Location:" ), this ); mUrlEdit = new KURLRequester( this ); mUrlEdit->setMode( KFile::File ); @@ -53,8 +53,8 @@ ResourceNetConfig::ResourceNetConfig( QWidget* parent, const char* name ) mainLayout->addWidget( mUrlEdit, 1, 1 ); FormatFactory *factory = FormatFactory::self(); - QStringList formats = factory->formats(); - QStringList::Iterator it; + TQStringList formats = factory->formats(); + TQStringList::Iterator it; for ( it = formats.begin(); it != formats.end(); ++it ) { FormatInfo *info = factory->info( *it ); if ( info ) { |