1. 14 Jun, 2015 - 2 commits
  2. 11 Jun, 2015 - 4 commits
  3. 10 Jun, 2015 - 5 commits
  4. 09 Jun, 2015 - 3 commits
  5. 05 Jun, 2015 - 3 commits
  6. 04 Jun, 2015 - 2 commits
  7. 03 Jun, 2015 - 3 commits
  8. 02 Jun, 2015 - 2 commits
  9. 01 Jun, 2015 - 13 commits
  10. 30 May, 2015 - 3 commits
    • Allan Sandfeld Jensen's avatar
      Fix subpixel rendered text in QGLWidget · 218e6cc6
      Allan Sandfeld Jensen authored
      
      Subpixel rendered text doesn't work in the old OpenGL paint engine
      because it assumes the glyphs are returned in RGB32 format, when they
      may be in ARGB32. This patch changes the test of the returned format
      to just check for 32bit matching the logic in the new OpenGL paint
      engine.
      
      Change-Id: Ib5b784dedba51cf22f216e2f035361518610b96b
      Reviewed-by: default avatarLaszlo Agocs <laszlo.agocs@theqtcompany.com>
      218e6cc6
    • Allan Sandfeld Jensen's avatar
      Fix combobox regression 5.4 -> 5.5 · 45751d0e
      Allan Sandfeld Jensen authored
      
      To avoid a touch release outside the combobox triggering the popup,
      a check was added that the combobox was hit. This fails if the combox
      itself is only used for the popup and associated behavior, but does
      not exist as widget. This patch changes the check so that only touch
      release checks for a hit, but a generic click still behaves as in 5.4
      to avoid regressions.
      
      This fixes comboboxes no longer working in QtWebKit, since QtWebKit
      renders its own comboxes in webpages, and only uses the popup of
      the QComboBox.
      
      
      Task-number: QTBUG-46152
      Change-Id: I74fd57b2e42e77aa4a269d812ca4a6689f254889
      Reviewed-by: default avatarFlorian Bruhin <qt-project.org@the-compiler.org>
      Reviewed-by: default avatarFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>
      45751d0e
    • Olivier Goffart's avatar
      moc: Fix crash parsing invalid macro invocation · 71c85c55
      Olivier Goffart authored
      
      When invoking a macro with less argument than it expect, we would
      crash trying to access the vector of arguments from the invocation
      as we are trying to substitute an argument.
      
      (Note that we do not show an error in case of argument mismatch
      because ithat might happen parsing valid code as moc's c++ parser
      is not 100% accurate (that was QTBUG-29331))
      
      Task-number: QTBUG-46210
      Change-Id: I3f08d7f5049e593a5bdc02a594ea63cadf66e7a4
      Reviewed-by: default avatarGabriel de Dietrich <gabriel.dedietrich@theqtcompany.com>
      71c85c55