diff options
Diffstat (limited to 'kabc/plugins/file/resourcefileconfig.cpp')
-rw-r--r-- | kabc/plugins/file/resourcefileconfig.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kabc/plugins/file/resourcefileconfig.cpp b/kabc/plugins/file/resourcefileconfig.cpp index a6d8ab4f9..92b07594f 100644 --- a/kabc/plugins/file/resourcefileconfig.cpp +++ b/kabc/plugins/file/resourcefileconfig.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> @@ -36,30 +36,30 @@ using namespace KABC; -ResourceFileConfig::ResourceFileConfig( QWidget* parent, const char* name ) +ResourceFileConfig::ResourceFileConfig( TQWidget* parent, const char* name ) : ConfigWidget( parent, name ) { - 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 ); mFileNameEdit = new KURLRequester( this ); - connect( mFileNameEdit, SIGNAL( textChanged( const QString & ) ), - SLOT( checkFilePermissions( const QString & ) ) ); + connect( mFileNameEdit, TQT_SIGNAL( textChanged( const TQString & ) ), + TQT_SLOT( checkFilePermissions( const TQString & ) ) ); mainLayout->addWidget( label, 1, 0 ); mainLayout->addWidget( mFileNameEdit, 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 ) { @@ -108,11 +108,11 @@ void ResourceFileConfig::saveSettings( KRES::Resource *res ) resource->setFileName( mFileNameEdit->url() ); } -void ResourceFileConfig::checkFilePermissions( const QString& fileName ) +void ResourceFileConfig::checkFilePermissions( const TQString& fileName ) { // If file exist but is not writeable... - if ( access( QFile::encodeName( fileName ), F_OK ) == 0 ) - emit setReadOnly( access( QFile::encodeName( fileName ), W_OK ) < 0 ); + if ( access( TQFile::encodeName( fileName ), F_OK ) == 0 ) + emit setReadOnly( access( TQFile::encodeName( fileName ), W_OK ) < 0 ); } #include "resourcefileconfig.moc" |