diff options
Diffstat (limited to 'kbugbuster/kresources/kcalresourceconfig.cpp')
-rw-r--r-- | kbugbuster/kresources/kcalresourceconfig.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kbugbuster/kresources/kcalresourceconfig.cpp b/kbugbuster/kresources/kcalresourceconfig.cpp index 008aa8c9..58466642 100644 --- a/kbugbuster/kresources/kcalresourceconfig.cpp +++ b/kbugbuster/kresources/kcalresourceconfig.cpp @@ -21,8 +21,8 @@ #include <typeinfo> -#include <qlabel.h> -#include <qlayout.h> +#include <tqlabel.h> +#include <tqlayout.h> #include <klineedit.h> #include <klocale.h> @@ -34,29 +34,29 @@ #include "resourceprefs.h" #include "kcalresourceconfig.h" -KCalResourceConfig::KCalResourceConfig( QWidget* parent, const char* name ) +KCalResourceConfig::KCalResourceConfig( 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("Server:"), this ); + TQLabel *label = new TQLabel( i18n("Server:"), this ); mainLayout->addWidget( label, 0, 0 ); mServerEdit = new KLineEdit( this ); mainLayout->addWidget( mServerEdit, 0, 1 ); - label = new QLabel( i18n("Product:"), this ); + label = new TQLabel( i18n("Product:"), this ); mainLayout->addWidget( label, 1, 0 ); mProductEdit = new KLineEdit( this ); mainLayout->addWidget( mProductEdit, 1, 1 ); - label = new QLabel( i18n("Component:"), this ); + label = new TQLabel( i18n("Component:"), this ); mainLayout->addWidget( label, 2, 0 ); mComponentEdit = new KLineEdit( this ); |