summaryrefslogtreecommitdiffstats
path: root/kresources/featureplan
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/featureplan')
-rw-r--r--kresources/featureplan/kcal_resourcefeatureplan.cpp4
-rw-r--r--kresources/featureplan/kcal_resourcefeatureplan.h2
-rw-r--r--kresources/featureplan/kcal_resourcefeatureplanconfig.cpp4
-rw-r--r--kresources/featureplan/kcal_resourcefeatureplanconfig.h2
4 files changed, 6 insertions, 6 deletions
diff --git a/kresources/featureplan/kcal_resourcefeatureplan.cpp b/kresources/featureplan/kcal_resourcefeatureplan.cpp
index e108247fa..cce884955 100644
--- a/kresources/featureplan/kcal_resourcefeatureplan.cpp
+++ b/kresources/featureplan/kcal_resourcefeatureplan.cpp
@@ -100,7 +100,7 @@ bool ResourceFeaturePlan::doLoad()
}
void ResourceFeaturePlan::insertCategories( const Category::List &categories,
- Todo *tqparent )
+ Todo *parent )
{
Category::List::ConstIterator it;
for( it = categories.begin(); it != categories.end(); ++it ) {
@@ -108,7 +108,7 @@ void ResourceFeaturePlan::insertCategories( const Category::List &categories,
Todo *categoryTodo = new Todo;
categoryTodo->setSummary( c->name() );
- categoryTodo->setRelatedTo( tqparent );
+ categoryTodo->setRelatedTo( parent );
insertCategories( c->categoryList(), categoryTodo );
diff --git a/kresources/featureplan/kcal_resourcefeatureplan.h b/kresources/featureplan/kcal_resourcefeatureplan.h
index 68f719a50..67799044e 100644
--- a/kresources/featureplan/kcal_resourcefeatureplan.h
+++ b/kresources/featureplan/kcal_resourcefeatureplan.h
@@ -56,7 +56,7 @@ class KDE_EXPORT ResourceFeaturePlan : public ResourceCached
KABC::Lock *lock();
protected:
- void insertCategories( const Category::List &categories, Todo *tqparent );
+ void insertCategories( const Category::List &categories, Todo *parent );
private:
Prefs *mPrefs;
diff --git a/kresources/featureplan/kcal_resourcefeatureplanconfig.cpp b/kresources/featureplan/kcal_resourcefeatureplanconfig.cpp
index 6478a2131..42043a5dd 100644
--- a/kresources/featureplan/kcal_resourcefeatureplanconfig.cpp
+++ b/kresources/featureplan/kcal_resourcefeatureplanconfig.cpp
@@ -35,9 +35,9 @@
using namespace KCal;
-ResourceFeaturePlanConfig::ResourceFeaturePlanConfig( TQWidget *tqparent,
+ResourceFeaturePlanConfig::ResourceFeaturePlanConfig( TQWidget *parent,
const char *name )
- : KRES::ConfigWidget( tqparent, name )
+ : KRES::ConfigWidget( parent, name )
{
TQGridLayout *topLayout = new TQGridLayout( this, 3, 2, 0,
KDialog::spacingHint() );
diff --git a/kresources/featureplan/kcal_resourcefeatureplanconfig.h b/kresources/featureplan/kcal_resourcefeatureplanconfig.h
index 97da46bec..e27ea94c2 100644
--- a/kresources/featureplan/kcal_resourcefeatureplanconfig.h
+++ b/kresources/featureplan/kcal_resourcefeatureplanconfig.h
@@ -37,7 +37,7 @@ class KDE_EXPORT ResourceFeaturePlanConfig : public KRES::ConfigWidget
TQ_OBJECT
public:
- ResourceFeaturePlanConfig( TQWidget *tqparent = 0, const char *name = 0 );
+ ResourceFeaturePlanConfig( TQWidget *parent = 0, const char *name = 0 );
public slots:
void loadSettings( KRES::Resource * );