summaryrefslogtreecommitdiffstats
path: root/klines/linesboard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'klines/linesboard.cpp')
-rw-r--r--klines/linesboard.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/klines/linesboard.cpp b/klines/linesboard.cpp
index 768965fa..bd5610cb 100644
--- a/klines/linesboard.cpp
+++ b/klines/linesboard.cpp
@@ -163,7 +163,7 @@ void LinesBoard::placeBall( )
/*id LinesBoard::doAfterBalls() {
erase5Balls();
- tqrepaint(FALSE);
+ repaint(FALSE);
}
*/
/*
@@ -306,7 +306,7 @@ void LinesBoard::moveFocus(int dx, int dy)
focusX = (focusX + dx + NUMCELLSW) % NUMCELLSW;
focusY = (focusY + dy + NUMCELLSH) % NUMCELLSH;
}
- tqrepaint(FALSE);
+ repaint(FALSE);
}
void LinesBoard::moveLeft()
@@ -401,7 +401,7 @@ int LinesBoard::AnimEnd( )
else if ( oldanim == ANIM_BURN )
{
emit eraseLine( deleteAnimatedBalls() );
- tqrepaint(FALSE);
+ repaint(FALSE);
if ( nextBallToPlace < BALLSDROP )
{
placeBall();
@@ -455,7 +455,7 @@ void LinesBoard::AnimNext() {
if ( (direction > 0 && animstep == animmax) || ( direction < 0 && animstep == 0))
direction = -direction;
animstep += direction;
- tqrepaint(FALSE);
+ repaint(FALSE);
} else {
if ( animstep >= animmax )
AnimEnd();
@@ -466,7 +466,7 @@ void LinesBoard::AnimNext() {
moveBall(way[animstep].x,way[animstep].y,way[animstep+1].x,way[animstep+1].y);
animstep++;
animdelaycount = animdelaystart;
- tqrepaint( FALSE );
+ repaint( FALSE );
}
}
}
@@ -698,7 +698,7 @@ void LinesBoard::undo()
AnimEnd();
restoreUndo();
restoreRandomState();
- tqrepaint( FALSE );
+ repaint( FALSE );
}
void LinesBoard::showDemoText(const TQString &text)