diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | 9150603ad32928e9c514c0492a8518b742d82ac3 (patch) | |
tree | 6e3f83e2b94146bb42eed57eb6dd8f2fb0369e6f /cervisia/updateview_items.cpp | |
parent | 6b126a99d5eecef5cb96589ed5c2e522bcb06ca9 (diff) | |
download | tdesdk-9150603ad32928e9c514c0492a8518b742d82ac3.tar.gz tdesdk-9150603ad32928e9c514c0492a8518b742d82ac3.zip |
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'cervisia/updateview_items.cpp')
-rw-r--r-- | cervisia/updateview_items.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cervisia/updateview_items.cpp b/cervisia/updateview_items.cpp index efa83593..44f81853 100644 --- a/cervisia/updateview_items.cpp +++ b/cervisia/updateview_items.cpp @@ -54,13 +54,13 @@ TQString UpdateItem::dirPath() const const UpdateItem* item = static_cast<UpdateItem*>(tqparent()); while (item) { - const UpdateItem* tqparentItem = static_cast<UpdateItem*>(item->tqparent()); - if (tqparentItem) + const UpdateItem* parentItem = static_cast<UpdateItem*>(item->tqparent()); + if (parentItem) { path.prepend(item->m_entry.m_name + TQDir::separator()); } - item = tqparentItem; + item = parentItem; } return path; |