summaryrefslogtreecommitdiffstats
path: root/src/ktechlab.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commite05894553004a47b1e2f276bedcf5963b57a3932 (patch)
tree2c12af14a609c053131e3a463068fa7589e6ac6a /src/ktechlab.cpp
parent60cba8acf96454af45641d6190a3f2ac9f9ff9b0 (diff)
downloadktechlab-e05894553004a47b1e2f276bedcf5963b57a3932.tar.gz
ktechlab-e05894553004a47b1e2f276bedcf5963b57a3932.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/ktechlab.cpp')
-rw-r--r--src/ktechlab.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ktechlab.cpp b/src/ktechlab.cpp
index c3ec9f7..3da09c1 100644
--- a/src/ktechlab.cpp
+++ b/src/ktechlab.cpp
@@ -227,7 +227,7 @@ void KTechlab::setupToolDocks()
void KTechlab::addWindow( ViewContainer * vc )
{
- if ( vc && !m_viewContainerList.tqcontains(vc) )
+ if ( vc && !m_viewContainerList.contains(vc) )
{
m_viewContainerList << vc;
connect( vc, TQT_SIGNAL(destroyed(TQObject* )), TQT_TQOBJECT(this), TQT_SLOT(slotViewContainerDestroyed(TQObject* )) );
@@ -330,7 +330,7 @@ void KTechlab::hideToolBarOverlay()
void KTechlab::addNoRemoveGUIClient( KXMLGUIClient * client )
{
- if ( client && !m_noRemoveGUIClients.tqcontains( client ) )
+ if ( client && !m_noRemoveGUIClients.contains( client ) )
m_noRemoveGUIClients << client;
}
@@ -342,7 +342,7 @@ void KTechlab::removeGUIClients()
TQPtrList<KXMLGUIClient> clients = factory()->clients();
for ( KXMLGUIClient * client = clients.first(); client; client = clients.next() )
{
- if ( client && client != this && !m_noRemoveGUIClients.tqcontains( client ) )
+ if ( client && client != this && !m_noRemoveGUIClients.contains( client ) )
clientsToRemove << client;
}