diff options
Diffstat (limited to 'kresources/remote/resourceremoteconfig.cpp')
-rw-r--r-- | kresources/remote/resourceremoteconfig.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kresources/remote/resourceremoteconfig.cpp b/kresources/remote/resourceremoteconfig.cpp index 3128eaade..67d7f4b94 100644 --- a/kresources/remote/resourceremoteconfig.cpp +++ b/kresources/remote/resourceremoteconfig.cpp @@ -21,8 +21,8 @@ #include <typeinfo> -#include <qlabel.h> -#include <qlayout.h> +#include <tqlabel.h> +#include <tqlayout.h> #include <klocale.h> #include <kdebug.h> @@ -38,21 +38,21 @@ using namespace KCal; -ResourceRemoteConfig::ResourceRemoteConfig( QWidget* parent, const char* name ) +ResourceRemoteConfig::ResourceRemoteConfig( TQWidget* parent, const char* name ) : KRES::ConfigWidget( parent, name ) { resize( 245, 115 ); - QGridLayout *mainLayout = new QGridLayout( this, 2, 2 ); + TQGridLayout *mainLayout = new TQGridLayout( this, 2, 2 ); mainLayout->setSpacing( KDialog::spacingHint() ); - QLabel *label = new QLabel( i18n( "Download from:" ), this ); + TQLabel *label = new TQLabel( i18n( "Download from:" ), this ); mDownloadUrl = new KURLRequester( this ); mDownloadUrl->setMode( KFile::File ); mainLayout->addWidget( label, 1, 0 ); mainLayout->addWidget( mDownloadUrl, 1, 1 ); - label = new QLabel( i18n( "Upload to:" ), this ); + label = new TQLabel( i18n( "Upload to:" ), this ); mUploadUrl = new KURLRequester( this ); mUploadUrl->setMode( KFile::File ); mainLayout->addWidget( label, 2, 0 ); |