summaryrefslogtreecommitdiffstats
path: root/digikam/libs/thumbbar/thumbbar.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commitbf9d53bc5869bf7e5e08edb571f8a4d8ddab98e3 (patch)
tree5865e2a07cb6a289ccecf19c412b5e4eabd21997 /digikam/libs/thumbbar/thumbbar.cpp
parentba7aa20da1ad2514fb277767d695ed1b17c932f0 (diff)
downloaddigikam-bf9d53bc5869bf7e5e08edb571f8a4d8ddab98e3.tar.gz
digikam-bf9d53bc5869bf7e5e08edb571f8a4d8ddab98e3.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/applications/digikam@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'digikam/libs/thumbbar/thumbbar.cpp')
-rw-r--r--digikam/libs/thumbbar/thumbbar.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/digikam/libs/thumbbar/thumbbar.cpp b/digikam/libs/thumbbar/thumbbar.cpp
index 51d1f4e..2cf81c0 100644
--- a/digikam/libs/thumbbar/thumbbar.cpp
+++ b/digikam/libs/thumbbar/thumbbar.cpp
@@ -243,7 +243,7 @@ void ThumbBarView::setExifRotate(bool exifRotate)
::unlink(TQFile::encodeName(smallThumbPath));
::unlink(TQFile::encodeName(bigThumbPath));
- tqinvalidateThumb(item);
+ invalidateThumb(item);
}
triggerUpdate();
@@ -419,12 +419,12 @@ void ThumbBarView::refreshThumbs(const KURL::List& urls)
ThumbBarItem *item = findItemByURL(*it);
if (item)
{
- tqinvalidateThumb(item);
+ invalidateThumb(item);
}
}
}
-void ThumbBarView::tqinvalidateThumb(ThumbBarItem* item)
+void ThumbBarView::invalidateThumb(ThumbBarItem* item)
{
if (!item) return;
@@ -902,7 +902,7 @@ ThumbBarToolTip::ThumbBarToolTip(ThumbBarView* tqparent)
void ThumbBarToolTip::maybeTip(const TQPoint& pos)
{
- if ( !tqparentWidget() || !m_view) return;
+ if ( !parentWidget() || !m_view) return;
ThumbBarItem* item = m_view->findItem( m_view->viewportToContents(pos) );
if (!item) return;