build on arm

svn path=/trunk/KDE/kdelibs/; revision=904274
This commit is contained in:
Marco Martin 2009-01-01 19:17:53 +00:00
parent 786bd0be2a
commit 47c511c86c
2 changed files with 2 additions and 2 deletions

View File

@ -284,7 +284,7 @@ void ToolTip::animateMove(qreal progress)
d->from = pos();
}
if (qFuzzyCompare(progress, 1.0)) {
if (qFuzzyCompare(progress, qreal(1.0))) {
move(d->to);
return;
}

View File

@ -52,7 +52,7 @@ public:
void progressChanged(qreal progress)
{
bool over = qFuzzyCompare(progress, 1.0);
bool over = qFuzzyCompare(progress, qreal(1.0));
if (value == targetValue) {
if (!over && movementId) {