Remove todo from NormalizedRect::operator|

as far as i can see that works just fine

GIT_SILENT
remotes/origin/work/aacid/new_clang_format_master
Albert Astals Cid 5 years ago
parent 3a71bca7c7
commit 275b7ea57c
  1. 1
      core/area.cpp

@ -184,7 +184,6 @@ bool NormalizedRect::intersects(double l, double t, double r, double b) const
NormalizedRect NormalizedRect::operator|(const NormalizedRect &r) const
{
NormalizedRect ret;
// todo !
ret.left = qMin(left, r.left);
ret.top = qMin(top, r.top);
ret.bottom = qMax(bottom, r.bottom);

Loading…
Cancel
Save