diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | e47aaa9b34ffc363d268aca989aab28fdfaf9821 (patch) | |
tree | 369b56d21949c574d30f71bdf24bf1e04f5e1877 /src/projectmanager.cpp | |
parent | e05894553004a47b1e2f276bedcf5963b57a3932 (diff) | |
download | ktechlab-e47aaa9b34ffc363d268aca989aab28fdfaf9821.tar.gz ktechlab-e47aaa9b34ffc363d268aca989aab28fdfaf9821.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/projectmanager.cpp')
-rw-r--r-- | src/projectmanager.cpp | 16 |
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) { |