summaryrefslogtreecommitdiffstats
path: root/src/kio_locate.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit9ade1fd58cac588859c32a889d01e1ffdb720fc5 (patch)
tree62d734b697988cf4f5d58d5c79849632b5976aac /src/kio_locate.cpp
parentcdd96d0eac46b68f9ec9d043914779c94500e129 (diff)
downloadtdeio-locate-9ade1fd58cac588859c32a889d01e1ffdb720fc5.tar.gz
tdeio-locate-9ade1fd58cac588859c32a889d01e1ffdb720fc5.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kio-locate@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kio_locate.cpp')
-rw-r--r--src/kio_locate.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/kio_locate.cpp b/src/kio_locate.cpp
index ee9e791..d213ded 100644
--- a/src/kio_locate.cpp
+++ b/src/kio_locate.cpp
@@ -843,9 +843,9 @@ void LocateProtocol::helpRequest()
/////////////////////////////////////////////////////////////////////
// SEARCH STRUCTURES
-LocateDirectory::LocateDirectory(LocateDirectory *tqparent, const TQString& path)
+LocateDirectory::LocateDirectory(LocateDirectory *parent, const TQString& path)
{
- m_parent = tqparent;
+ m_parent = parent;
m_path = path;
m_childs.setAutoDelete(true);
m_itemsCount = 0;
@@ -929,20 +929,20 @@ void LocateDirectory::prepareListing(const LocateProtocol* protocol, int skip)
m_fullCount = countMatchingItems(protocol, newSkip);
// Collapse if directory part matches.
- LocateDirectory* tqparent = m_parent;
- if (tqparent == NULL) {
- tqparent = this;
+ LocateDirectory* parent = m_parent;
+ if (parent == NULL) {
+ parent = this;
}
if (n > skip && protocol->getRegExp().isMatching(m_path.mid(skip))) {
// Directory part matches.
m_childs.clear();
m_items.clear();
m_itemsCount = 0;
- tqparent->m_items += LocateItem(m_path, m_fullCount);
- ++tqparent->m_itemsCount;
+ parent->m_items += LocateItem(m_path, m_fullCount);
+ ++parent->m_itemsCount;
if (m_fullCount != 0) {
- tqparent->m_items += LocateItem(m_path, 0);
- ++tqparent->m_itemsCount;
+ parent->m_items += LocateItem(m_path, 0);
+ ++parent->m_itemsCount;
}
}
@@ -958,7 +958,7 @@ void LocateDirectory::prepareListing(const LocateProtocol* protocol, int skip)
++m_itemsCount;
}
} else {
- // Propagate items to tqparent.
+ // Propagate items to parent.
// (only root LocateDirectory runs listItems)
if (m_parent != NULL) {
m_parent->m_items += m_items;