apol added inline comments.

INLINE COMMENTS

> containmentinterface.cpp:565
>          QPoint posi; // will be overwritten with the event's position
> -        if (m_dropPoints.keys().contains(tjob)) {
> -            posi = m_dropPoints[tjob];
> +        if (m_dropPoints.contains(tjob)) {
> +            posi = m_dropPoints.value(tjob);

Here you're still doing 1 look-up too many.

`QPoint posi = m_dropPoints.value(tjob);` will possibly do the same, then you 
can `if (posi.isNull())`.

Otherwise you can `constFind` and `it!=constEnd`

REPOSITORY
  R242 Plasma Framework (Library)

REVISION DETAIL
  https://phabricator.kde.org/D4348

EMAIL PREFERENCES
  https://phabricator.kde.org/settings/panel/emailpreferences/

To: broulik, #plasma, davidedmundson
Cc: apol, plasma-devel, #frameworks, lesliezhai, ali-mohamed, jensreuterberg, 
abetts, sebas

Reply via email to