[MacPorts] #66165: qt5-qtwebengine @5.15.10_1 (aqua): Processing of port qt5-qtwebengine failed

MacPorts noreply at macports.org
Mon Nov 7 03:56:57 UTC 2022


#66165: qt5-qtwebengine @5.15.10_1 (aqua): Processing of port qt5-qtwebengine
failed
------------------------------+---------------------------------
  Reporter:  wurzelsand       |      Owner:  MarcusCalhoun-Lopez
      Type:  defect           |     Status:  assigned
  Priority:  Normal           |  Milestone:
 Component:  ports            |    Version:  2.8.0
Resolution:                   |   Keywords:
      Port:  qt5-qtwebengine  |
------------------------------+---------------------------------

Comment (by chrstphrchvz):

 Ken, thanks for testing this and the update.

 Looking again at float_rect.h and rect_f.h, I believe the intention was to
 rely on the `gfx::RectF` method of `FloatRect` for the conversion, and not
 the longer way of getting a `CGRect` from a `FloatRect` and then
 constructing a `gfx::RectF` from a `CGRect`; I would guess the existence
 of both approaches is what lead to the ambiguity error.

 So a platform-agnostic alternative (probably still not ideal, but what I
 would prefer proposing to Qt) might be to duplicate what is done by the
 `gfx::RectF` method of `FloatRect`: use a temporary `FloatRect` and pass
 its x/y/width/height to the `gfx::RectF(float x, float y, float width,
 float height)` constructor, e.g.

 {{{
 -  return
 gfx::RectF(FindInPageRectFromRange(EphemeralRange(ActiveMatch())));
 +  FloatRect r = FindInPageRectFromRange(EphemeralRange(ActiveMatch()));
 +  return gfx::RectF(r.X(), r.Y(), r.Width(), r.Height());
 }}}

-- 
Ticket URL: <https://trac.macports.org/ticket/66165#comment:14>
MacPorts <https://www.macports.org/>
Ports system for macOS


More information about the macports-tickets mailing list