summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
commit2ebe91d378b798914b9fd5e741f81bac4ab3ef08 (patch)
tree31ad87fd78f9a9020df94c5afc7a4a4ed9764941
parentac3e0fe8666afdd444b6c68451dcdecf15df942a (diff)
downloadbasket-2ebe91d378b798914b9fd5e741f81bac4ab3ef08.tar.gz
basket-2ebe91d378b798914b9fd5e741f81bac4ab3ef08.zip
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/basket@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--src/basket.cpp2
-rw-r--r--src/basketlistview.cpp4
-rw-r--r--src/bnpview.cpp2
-rw-r--r--src/kiconcanvas.cpp2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/basket.cpp b/src/basket.cpp
index a5fd970..b71f745 100644
--- a/src/basket.cpp
+++ b/src/basket.cpp
@@ -2533,7 +2533,7 @@ void Basket::doAutoScrollSelection()
dx = pos.x() - visibleWidth() + AUTO_SCROLL_MARGIN;
if (dx || dy) {
- kapp->sendPostedEvents(); // Do the tqrepaints, because the scrolling will make the area to tqrepaint to be wrong
+ kapp->sendPostedEvents(); // Do the repaints, because the scrolling will make the area to tqrepaint to be wrong
scrollBy(dx, dy);
if (!m_autoScrollSelectionTimer.isActive())
m_autoScrollSelectionTimer.start(AUTO_SCROLL_DELAY);
diff --git a/src/basketlistview.cpp b/src/basketlistview.cpp
index 3d0ed71..d118944 100644
--- a/src/basketlistview.cpp
+++ b/src/basketlistview.cpp
@@ -745,7 +745,7 @@ void BasketTreeListView::setItemUnderDrag(BasketListViewItem* item)
if (m_itemUnderDrag) {
// Remove drag status from the old item
m_itemUnderDrag->setUnderDrag(false);
- tqrepaintItem(m_itemUnderDrag);
+ repaintItem(m_itemUnderDrag);
}
m_itemUnderDrag = item;
@@ -753,7 +753,7 @@ void BasketTreeListView::setItemUnderDrag(BasketListViewItem* item)
if (m_itemUnderDrag) {
// add drag status to the new item
m_itemUnderDrag->setUnderDrag(true);
- tqrepaintItem(m_itemUnderDrag);
+ repaintItem(m_itemUnderDrag);
}
}
}
diff --git a/src/bnpview.cpp b/src/bnpview.cpp
index 61843b1..8d6c9e6 100644
--- a/src/bnpview.cpp
+++ b/src/bnpview.cpp
@@ -1594,7 +1594,7 @@ void BNPView::grabScreenshot(bool global)
}
// Delay before to take a screenshot because if we hide the main window OR the systray popup menu,
- // we should wait the windows below to be tqrepainted!!!
+ // we should wait the windows below to be repainted!!!
// A special case is where the action is triggered with the global keyboard shortcut.
// In this case, global is true, and we don't wait.
// In the future, if global is also defined for other cases, check for
diff --git a/src/kiconcanvas.cpp b/src/kiconcanvas.cpp
index 77ac537..6467844 100644
--- a/src/kiconcanvas.cpp
+++ b/src/kiconcanvas.cpp
@@ -179,7 +179,7 @@ void KIconCanvas::slotLoadFiles()
loadIcon(*it);
// Calling kapp->processEvents() makes the iconview flicker like hell
- // (it's being tqrepainted once for every new item), so we don't do this.
+ // (it's being repainted once for every new item), so we don't do this.
// Instead, we directly tqrepaint the progress bar without going through
// the event-loop. We do that just once for every 10th item so that
// the progress bar doesn't flicker in turn. (pfeiffer)