summaryrefslogtreecommitdiffstats
path: root/kdirstat/ktreemapview.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
commit18a819f5b3a741f7bdbc4efc7bc0057a448de2d8 (patch)
treee9e7dde31512c77dd92dcea4f44b2b6455f67219 /kdirstat/ktreemapview.cpp
parente8d62395de6c1b3844294c5b6c09428c315ac42a (diff)
downloadkdirstat-18a819f5b3a741f7bdbc4efc7bc0057a448de2d8.tar.gz
kdirstat-18a819f5b3a741f7bdbc4efc7bc0057a448de2d8.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/kdirstat@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdirstat/ktreemapview.cpp')
-rw-r--r--kdirstat/ktreemapview.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/kdirstat/ktreemapview.cpp b/kdirstat/ktreemapview.cpp
index e719a60..07d8412 100644
--- a/kdirstat/ktreemapview.cpp
+++ b/kdirstat/ktreemapview.cpp
@@ -192,8 +192,8 @@ KTreemapView::contentsMousePressEvent( TQMouseEvent * event )
if ( _selectedTile &&
_selectedTile->rect().tqcontains( event->pos() ) )
{
- if ( _selectedTile->tqparentTile() )
- tile = _selectedTile->tqparentTile();
+ if ( _selectedTile->parentTile() )
+ tile = _selectedTile->parentTile();
}
// Intentionally handling the middle button like the left button if
@@ -285,10 +285,10 @@ KTreemapView::zoomIn()
KTreemapTile * newRootTile = _selectedTile;
- while ( newRootTile->tqparentTile() != _rootTile &&
- newRootTile->tqparentTile() ) // This should never happen, but who knows?
+ while ( newRootTile->parentTile() != _rootTile &&
+ newRootTile->parentTile() ) // This should never happen, but who knows?
{
- newRootTile = newRootTile->tqparentTile();
+ newRootTile = newRootTile->parentTile();
}
if ( newRootTile )
@@ -319,8 +319,8 @@ KTreemapView::zoomOut()
void
KTreemapView::selectParent()
{
- if ( _selectedTile && _selectedTile->tqparentTile() )
- selectTile( _selectedTile->tqparentTile() );
+ if ( _selectedTile && _selectedTile->parentTile() )
+ selectTile( _selectedTile->parentTile() );
}
@@ -335,10 +335,10 @@ KTreemapView::canZoomIn() const
KTreemapTile * newRootTile = _selectedTile;
- while ( newRootTile->tqparentTile() != _rootTile &&
- newRootTile->tqparentTile() ) // This should never happen, but who knows?
+ while ( newRootTile->parentTile() != _rootTile &&
+ newRootTile->parentTile() ) // This should never happen, but who knows?
{
- newRootTile = newRootTile->tqparentTile();
+ newRootTile = newRootTile->parentTile();
}
if ( newRootTile )
@@ -366,7 +366,7 @@ KTreemapView::canZoomOut() const
bool
KTreemapView::canSelectParent() const
{
- return _selectedTile && _selectedTile->tqparentTile();
+ return _selectedTile && _selectedTile->parentTile();
}
@@ -427,8 +427,8 @@ KTreemapView::rebuildTreemap( KFileInfo * newRoot,
if ( newRoot )
{
- _rootTile = new KTreemapTile( this, // tqparentView
- 0, // tqparentTile
+ _rootTile = new KTreemapTile( this, // parentView
+ 0, // parentTile
newRoot, // orig
TQRect( TQPoint( 0, 0), newSize ),
KTreemapAuto );