summaryrefslogtreecommitdiffstats
path: root/kresources/featureplan/kcal_resourcefeatureplanconfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/featureplan/kcal_resourcefeatureplanconfig.cpp')
-rw-r--r--kresources/featureplan/kcal_resourcefeatureplanconfig.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kresources/featureplan/kcal_resourcefeatureplanconfig.cpp b/kresources/featureplan/kcal_resourcefeatureplanconfig.cpp
index c72915d0..42043a5d 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 );
}