summaryrefslogtreecommitdiffstats
path: root/quanta/project/project.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/project/project.cpp')
-rw-r--r--quanta/project/project.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/quanta/project/project.cpp b/quanta/project/project.cpp
index 3cc29461..ebc16264 100644
--- a/quanta/project/project.cpp
+++ b/quanta/project/project.cpp
@@ -68,15 +68,15 @@ extern TQString taskLeaderStr;
extern TQString teamLeaderStr;
extern TQString subprojectLeaderStr;
-Project::Project(KMainWindow *tqparent)
+Project::Project(KMainWindow *parent)
: TQObject()
{
d = new ProjectPrivate(this);
connect(d, TQT_SIGNAL(eventHappened(const TQString&, const TQString&, const TQString& )), this, TQT_SIGNAL(eventHappened(const TQString&, const TQString&, const TQString& )));
- d->m_mainWindow = tqparent;
+ d->m_mainWindow = parent;
d->m_uploadDialog = 0L;
keepPasswd = true;
- d->initActions(tqparent->actionCollection());
+ d->initActions(parent->actionCollection());
}
Project::~Project()