summaryrefslogtreecommitdiffstats
path: root/kbounce/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbounce/game.cpp')
-rw-r--r--kbounce/game.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kbounce/game.cpp b/kbounce/game.cpp
index a223fea8..065b2657 100644
--- a/kbounce/game.cpp
+++ b/kbounce/game.cpp
@@ -406,7 +406,7 @@ JezzGame::JezzGame( const TQPixmap &background, int ballNum, TQWidget *parent, c
connect( m_clock, TQT_SIGNAL(timeout()), this, TQT_SLOT(tick()) );
m_clock->start( GAME_DELAY );
- // setup geometry
+ // setup tqgeometry
setFixedSize( m_view->size() );
}
@@ -500,7 +500,7 @@ void JezzGame::makeBlack()
}
m_field->update();
- m_view->repaint();
+ m_view->tqrepaint();
// count percent value of occupied area
int p = percent();
@@ -586,7 +586,7 @@ void JezzGame::ballCollision( Ball */*ball*/, int /*x*/, int /*y*/, int tile )
// update view
m_field->update();
- m_view->repaint();
+ m_view->tqrepaint();
// send death msg
emit died();
@@ -671,7 +671,7 @@ void JezzGame::wallFinished( Wall *wall, int tile )
}
m_field->update();
- m_view->repaint();
+ m_view->tqrepaint();
makeBlack();
}