summaryrefslogtreecommitdiffstats
path: root/src/projectmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/projectmanager.cpp')
-rw-r--r--src/projectmanager.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/projectmanager.cpp b/src/projectmanager.cpp
index 884a8e9..3a6565c 100644
--- a/src/projectmanager.cpp
+++ b/src/projectmanager.cpp
@@ -179,10 +179,10 @@ void ProcessingOptions::domElementToProcessingOptions( const TQDomElement & elem
//BEGIN class ProjectItem
-ProjectItem::ProjectItem( ProjectItem * tqparent, Type type, ProjectManager * projectManager, KTechlab * ktechlab )
+ProjectItem::ProjectItem( ProjectItem * parent, Type type, ProjectManager * projectManager, KTechlab * ktechlab )
: TQObject()
{
- m_pParent = tqparent;
+ m_pParent = parent;
m_pILVItem = 0l;
m_pProjectManager = projectManager;
p_ktechlab = ktechlab;
@@ -389,7 +389,7 @@ ProjectItem::OutputType ProjectItem::outputType() const
case ProjectItem::FileType:
{
- kdWarning() << k_funcinfo << "Don't know how to handle tqparent item being a file" << endl;
+ kdWarning() << k_funcinfo << "Don't know how to handle parent item being a file" << endl;
return UnknownOutput;
}
@@ -889,20 +889,20 @@ bool ProjectInfo::saveAndClose()
//BEGIN class ProjectManager
ProjectManager * ProjectManager::m_pSelf = 0l;
-ProjectManager * ProjectManager::self( KTechlab * ktl, KateMDI::ToolView * tqparent )
+ProjectManager * ProjectManager::self( KTechlab * ktl, KateMDI::ToolView * parent )
{
if ( !m_pSelf )
{
assert(ktl);
- assert(tqparent);
- m_pSelf = new ProjectManager( ktl, tqparent );
+ assert(parent);
+ m_pSelf = new ProjectManager( ktl, parent );
}
return m_pSelf;
}
-ProjectManager::ProjectManager( KTechlab * ktl, KateMDI::ToolView * tqparent )
- : ItemSelector( tqparent, "Project Manager" ),
+ProjectManager::ProjectManager( KTechlab * ktl, KateMDI::ToolView * parent )
+ : ItemSelector( parent, "Project Manager" ),
m_pCurrentProject(0l),
p_ktechlab(ktl)
{