diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-07 21:14:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-07 21:14:06 +0000 |
commit | 421a6fdcbe08c6297214e7397ab98e535148686f (patch) | |
tree | 4ce80e80982c1ce16be23f73e883b3afb00266c8 /src/svnfrontend | |
parent | 6c8e5e5544cf5f70da6c1efec71d4431e88ab4df (diff) | |
download | tdesvn-421a6fdcbe08c6297214e7397ab98e535148686f.tar.gz tdesvn-421a6fdcbe08c6297214e7397ab98e535148686f.zip |
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/svnfrontend')
-rw-r--r-- | src/svnfrontend/kdesvnfilelist.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/svnfrontend/kdesvnfilelist.cpp b/src/svnfrontend/kdesvnfilelist.cpp index ba2249d..4926baf 100644 --- a/src/svnfrontend/kdesvnfilelist.cpp +++ b/src/svnfrontend/kdesvnfilelist.cpp @@ -2534,7 +2534,7 @@ void kdesvnfilelist::_dirwatchTimeout() TQMap<TQString,TQChar>::Iterator it; m_pList->m_fileTip->setItem(0); viewport()->setUpdatesEnabled(false); - bool tqrepaintit=false; + bool repaintit=false; for (it=m_pList->dirItems.begin();it!=m_pList->dirItems.end();++it) { TQString what = it.key(); @@ -2554,7 +2554,7 @@ void kdesvnfilelist::_dirwatchTimeout() } if (item->isDir()) { if (item->isRealVersioned()) { - tqrepaintit = refreshRecursive(item,false); + repaintit = refreshRecursive(item,false); } else { TQListViewItem *_s; while ( (_s=item->firstChild())) @@ -2578,7 +2578,7 @@ void kdesvnfilelist::_dirwatchTimeout() if (!fi.exists()) { FileListViewItem*p = static_cast<FileListViewItem*>(item->tqparent()); delete item; - tqrepaintit=true; + repaintit=true; item = 0; if (p && p->isVersioned()) { p->update(); @@ -2599,7 +2599,7 @@ void kdesvnfilelist::_dirwatchTimeout() } m_pList->dirItems.clear(); viewport()->setUpdatesEnabled(true); - if (tqrepaintit) { + if (repaintit) { // viewport()->tqrepaint(); } } |