summaryrefslogtreecommitdiffstats
path: root/src/k3bwidgetshoweffect.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commitdf8e67b86696f691708af8592d86282b09bab011 (patch)
treeca90d734c9011d457a42f0a7004a9507b2c2c1bd /src/k3bwidgetshoweffect.cpp
parent33881ea4441221b1ca0789a72c4c7249d923a0df (diff)
downloadk3b-df8e67b8.tar.gz
k3b-df8e67b8.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/k3bwidgetshoweffect.cpp')
-rw-r--r--src/k3bwidgetshoweffect.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/k3bwidgetshoweffect.cpp b/src/k3bwidgetshoweffect.cpp
index 2292c19..1da951e 100644
--- a/src/k3bwidgetshoweffect.cpp
+++ b/src/k3bwidgetshoweffect.cpp
@@ -63,9 +63,9 @@ void K3bWidgetShowEffect::show( bool effectOnly )
m_widget->polish();
if( m_effect == Dissolve ) {
- // necessary to create the tqmask
- m_tqmask.resize( m_widget->width(), m_widget->height() );
- // make the tqmask empty and hence will not show widget with show() called below
+ // necessary to create the mask
+ m_mask.resize( m_widget->width(), m_widget->height() );
+ // make the mask empty and hence will not show widget with show() called below
dissolveMask();
m_timerId = startTimer( 1000 / 30 );
}
@@ -97,13 +97,13 @@ void K3bWidgetShowEffect::dissolveMask()
{
if( m_bShow ) {
m_widget->tqrepaint( false );
- TQPainter maskPainter(&m_tqmask);
+ TQPainter maskPainter(&m_mask);
- m_tqmask.fill(TQt::black);
+ m_mask.fill(TQt::black);
maskPainter.setBrush(TQt::white);
maskPainter.setPen(TQt::white);
- maskPainter.drawRect( m_tqmask.rect() );
+ maskPainter.drawRect( m_mask.rect() );
m_dissolveSize += m_dissolveDelta;
@@ -135,7 +135,7 @@ void K3bWidgetShowEffect::dissolveMask()
deleteLater();
}
- m_widget->setMask( m_tqmask );
+ m_widget->setMask( m_mask );
}
else {