diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kresources/featureplan/kcal_resourcefeatureplanconfig.cpp | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources/featureplan/kcal_resourcefeatureplanconfig.cpp')
-rw-r--r-- | kresources/featureplan/kcal_resourcefeatureplanconfig.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kresources/featureplan/kcal_resourcefeatureplanconfig.cpp b/kresources/featureplan/kcal_resourcefeatureplanconfig.cpp index c72915d0a..42043a5dd 100644 --- a/kresources/featureplan/kcal_resourcefeatureplanconfig.cpp +++ b/kresources/featureplan/kcal_resourcefeatureplanconfig.cpp @@ -19,9 +19,9 @@ Boston, MA 02110-1301, USA. */ -#include <qlabel.h> -#include <qlayout.h> -#include <qcheckbox.h> +#include <tqlabel.h> +#include <tqlayout.h> +#include <tqcheckbox.h> #include <kdebug.h> #include <kdialog.h> @@ -35,26 +35,26 @@ using namespace KCal; -ResourceFeaturePlanConfig::ResourceFeaturePlanConfig( QWidget *parent, +ResourceFeaturePlanConfig::ResourceFeaturePlanConfig( TQWidget *parent, const char *name ) : KRES::ConfigWidget( parent, name ) { - QGridLayout *topLayout = new QGridLayout( this, 3, 2, 0, + TQGridLayout *topLayout = new TQGridLayout( this, 3, 2, 0, KDialog::spacingHint() ); - QLabel *label = new QLabel( i18n( "Filename:" ), this ); + TQLabel *label = new TQLabel( i18n( "Filename:" ), this ); mFilename = new KURLRequester( this ); topLayout->addWidget( label, 0, 0 ); topLayout->addWidget( mFilename, 0, 1 ); - label = new QLabel( i18n( "Filter email:" ), this ); + label = new TQLabel( i18n( "Filter email:" ), this ); mFilterEmail = new KLineEdit( this ); topLayout->addWidget( label, 1, 0 ); topLayout->addWidget( mFilterEmail, 1, 1 ); - mCvsCheck = new QCheckBox( i18n("Use CVS"), this ); + mCvsCheck = new TQCheckBox( i18n("Use CVS"), this ); topLayout->addMultiCellWidget( mCvsCheck, 2, 2, 0, 1 ); } |