1. 06 Jun, 2013 - 3 commits
  2. 04 Jun, 2013 - 4 commits
  3. 03 Jun, 2013 - 1 commit
  4. 31 May, 2013 - 5 commits
  5. 30 May, 2013 - 6 commits
  6. 29 May, 2013 - 5 commits
  7. 28 May, 2013 - 5 commits
  8. 27 May, 2013 - 8 commits
  9. 24 May, 2013 - 1 commit
  10. 23 May, 2013 - 2 commits
    • Friedemann Kleint's avatar
      qmlscene: Set window flags correctly. · 745621a9
      Friedemann Kleint authored
      
      Task-number: QTBUG-31258
      
      Change-Id: I13dfc17c75075de155505d20c57400753de0a71d
      Reviewed-by: default avatarShawn Rutledge <shawn.rutledge@digia.com>
      745621a9
    • Albert Astals Cid's avatar
      Do not return cacheItem->object if it is still incubating · 8a3d4891
      Albert Astals Cid authored
      
      It can happen that cacheItem->object in QQmlDelegateModelPrivate::object
      already has a value but that the cacheItem->incubationTask is still
      Loading. If we return the object here we can confuse some of QQmlDelegateModel
      consumers like QQuickItemView.
      
      E.g. in QQuickItemView if we get to return the object before the createdItem
      signal is emitted we will make that when the createdItem signal happens
      QQuickItemView::createdItem will be called it will add the item
      to unrequestedItems items and will expect that layout/refill will
      remove it from unrequestedItems if it is really one of the items we are
      creating, but as it has been already created the item will wrongly remain
      in unrequestedItems making the item view to act weird
      
      Task-number: QTBUG-28403
      
      Change-Id: I4359391eb2a4012afd3f01d082a99692d63b6639
      Reviewed-by: default avatarAlan Alpert <aalpert@blackberry.com>
      8a3d4891