summaryrefslogtreecommitdiffstats
path: root/src/newstuff
diff options
context:
space:
mode:
Diffstat (limited to 'src/newstuff')
-rw-r--r--src/newstuff/dialog.cpp2
-rw-r--r--src/newstuff/dialog.h2
-rw-r--r--src/newstuff/manager.h2
-rw-r--r--src/newstuff/providerloader.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/newstuff/dialog.cpp b/src/newstuff/dialog.cpp
index e2d9c21..646793a 100644
--- a/src/newstuff/dialog.cpp
+++ b/src/newstuff/dialog.cpp
@@ -60,7 +60,7 @@ using Tellico::NewStuff::Dialog;
class Dialog::Item : public GUI::ListViewItem {
public:
- Item(GUI::ListView* tqparent) : GUI::ListViewItem(tqparent) {}
+ Item(GUI::ListView* parent) : GUI::ListViewItem(parent) {}
InstalltqStatus status() const { return m_status; }
void settqStatus(InstalltqStatus status) {
diff --git a/src/newstuff/dialog.h b/src/newstuff/dialog.h
index b719b72..2afb0f2 100644
--- a/src/newstuff/dialog.h
+++ b/src/newstuff/dialog.h
@@ -46,7 +46,7 @@ Q_OBJECT
TQ_OBJECT
public:
- Dialog(DataType type, TQWidget* tqparent);
+ Dialog(DataType type, TQWidget* parent);
virtual ~Dialog();
TQPtrList<DataSourceInfo> dataSourceInfo() const { return m_manager->dataSourceInfo(); }
diff --git a/src/newstuff/manager.h b/src/newstuff/manager.h
index 53c6726..8b33dd4 100644
--- a/src/newstuff/manager.h
+++ b/src/newstuff/manager.h
@@ -59,7 +59,7 @@ Q_OBJECT
TQ_OBJECT
public:
- Manager(TQObject* tqparent);
+ Manager(TQObject* parent);
~Manager();
void install(DataType type, KNS::Entry* entry);
diff --git a/src/newstuff/providerloader.h b/src/newstuff/providerloader.h
index 37ca7d1..5dd8c17 100644
--- a/src/newstuff/providerloader.h
+++ b/src/newstuff/providerloader.h
@@ -41,7 +41,7 @@ public:
/**
* Constructor.
*
- * @param parentWidget the tqparent widget
+ * @param parentWidget the parent widget
*/
ProviderLoader( TQWidget *parentWidget );