1. 24 Nov, 2014 - 2 commits
  2. 21 Nov, 2014 - 1 commit
  3. 20 Nov, 2014 - 1 commit
  4. 13 Nov, 2014 - 1 commit
  5. 12 Nov, 2014 - 1 commit
  6. 10 Nov, 2014 - 2 commits
  7. 07 Nov, 2014 - 1 commit
  8. 01 Nov, 2014 - 1 commit
  9. 31 Oct, 2014 - 1 commit
  10. 29 Oct, 2014 - 2 commits
  11. 28 Oct, 2014 - 1 commit
    • Eskil Abrahamsen Blomfeldt's avatar
      androiddeployqt: Fix dependency order for XML dependencies · 53261d90
      Eskil Abrahamsen Blomfeldt authored
      
      Although this bug was there in Qt 5.3 as well, something has changed
      in our build system that causes readelf to return libraries in a
      different order than before. In particular, the QtMultimedia dependency
      is now listed before QtQuick if it's listed first in the QT variable in
      the .pro file. This caused the following bug:
      
      When we read the manual dependencies from the XML specification,
      then we assume the dependencies of these are already met (otherwise
      they should not be added). Therefore, we need to load these
      dependencies last, not intermingled with the actual direct
      dependencies of the application.
      
      What would happen is that Qt5Multimedia came before Qt5Quick, and
      triggered adding Qt5MultimediaQuick_p before Qt5Quick. This of course
      depends on Qt5Quick so it needs to be added after it (which is why
      it is only added if the application itself depends on Qt Quick).
      
      Change-Id: Ifa97d85645cff49ebf65d4ce3fc2101506346695
      Task-number: QTBUG-42012
      Reviewed-by: default avatarChristian Stromme <christian.stromme@digia.com>
      Reviewed-by: default avatarBogDan Vatra <bogdan@kde.org>
      53261d90
  12. 27 Oct, 2014 - 2 commits
  13. 20 Oct, 2014 - 1 commit
  14. 17 Oct, 2014 - 1 commit
  15. 16 Oct, 2014 - 2 commits
  16. 14 Oct, 2014 - 3 commits
  17. 13 Oct, 2014 - 1 commit
  18. 09 Oct, 2014 - 2 commits
  19. 08 Oct, 2014 - 1 commit
  20. 07 Oct, 2014 - 1 commit
  21. 06 Oct, 2014 - 3 commits
    • Friedemann Kleint's avatar
      windeployqt: Add support for QtWebEngine. · 8853c99a
      Friedemann Kleint authored
      
      Change-Id: I92d8d5271c0dc53cc37ea6f699e75ab91ad0cf3a
      Reviewed-by: default avatarMichael Bruning <michael.bruning@digia.com>
      8853c99a
    • Friedemann Kleint's avatar
      Qt Designer: Load translations only when designer_<LANG>.qm is present. · 1773ee45
      Friedemann Kleint authored
      
      Try to load designer_<LANG>.qm first and load qt_<LANG>.qm only
      if the former succeeds.
      
      Task-number: QTBUG-41790
      Change-Id: Id4862019edf81da81bf9d059c586bbfee18ab7e6
      Reviewed-by: default avatarOswald Buddenhagen <oswald.buddenhagen@digia.com>
      1773ee45
    • Christian Kandeler's avatar
      Make sure the content widget never replaces valid data with empty data. · a1751e3d
      Christian Kandeler authored
      
      This could happen because insertContents() is called once for
      every run of the content provider, even if an invalidation happens
      in between. Example sequence:
          run()
          invalidate() [removes result of first run]
          run()
          insertContents() [queued for first run, retrieves result of second run]
          insertContents() [queued for second run, retrieves empty data]
      We now check in insertContents() whether the content provider has a
      valid root item and do nothing if it does not. This means that
      insertContents() will never replace the current model data with empty
      data; only invalidateContents() can do that from now on.
      Further improvements:
          - Only call insertContents() if the run was not aborted; this
            reduces the number of useless objects in the event queue.
          - Remove the m_rootItem member; it was only used in the run() function.
          - Only add the root item to the list at the end of a successful run;
            there is no reason this object should be accessible from the outside
            while there are still children being added to it.
      
      Change-Id: I80e2ea93dd9bbc8ab7f406c989b61f16f11b6eea
      Reviewed-by: default avatarKarsten Heimrich <karsten.heimrich@digia.com>
      a1751e3d
  22. 03 Oct, 2014 - 1 commit
  23. 01 Oct, 2014 - 5 commits
  24. 29 Sep, 2014 - 1 commit
  25. 26 Sep, 2014 - 2 commits