SVN_SILENT: micro cosmetic style fix

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=764302
This commit is contained in:
Marco Martin 2008-01-21 11:51:04 +00:00
parent ee37d19811
commit 6d362861e0

View File

@ -565,9 +565,9 @@ QPoint Widget::popupPosition(const QSize s) const
return QPoint(pos.x() - s.width(), pos.y());
default:
if (pos.y() > 0) {
return QPoint(pos.x(), pos.y()-s.height());
return QPoint(pos.x(), pos.y() - s.height());
} else {
return QPoint(pos.x(), pos.y()+(int)size().height());
return QPoint(pos.x(), pos.y() + (int)size().height());
}
}
}