kwin: Fix two ;;'s

icc-effect-5.14.5
Fredrik Höglund 2011-10-29 17:06:54 +02:00
parent fe08300505
commit c784dbb097
1 changed files with 2 additions and 2 deletions

View File

@ -176,14 +176,14 @@ void Scene::updateTimeDiff()
time_diff = last_time.elapsed();
if (time_diff < 0) // check time rollback
time_diff = 1;
last_time.restart();;
last_time.restart();
}
// Painting pass is optimized away.
void Scene::idle()
{
// Don't break time since last paint for the next pass.
last_time.invalidate();;
last_time.invalidate();
}
// the function that'll be eventually called by paintScreen() above