~ubuntu-branches/ubuntu/wily/qtdeclarative-opensource-src/wily-proposed

« back to all changes in this revision

Viewing changes to src/qml/qml/ftw/qintrusivelist.cpp

  • Committer: Package Import Robot
  • Author(s): Ricardo Salveti de Araujo, Ricardo Salveti de Araujo, Timo Jyrinki
  • Date: 2014-06-19 02:39:21 UTC
  • mfrom: (0.1.18 experimental)
  • Revision ID: package-import@ubuntu.com-20140619023921-yb2oasnuetz9b0fc
Tags: 5.3.0-3ubuntu4
[ Ricardo Salveti de Araujo ]
* debian/control:
  - Updating dependencies as we now also have libqt5quickwidgets5-gles
* libqt5quickwidgets5.symbols: updating to allow gles variant

[ Timo Jyrinki ]
* Update libqt5quickparticles5.symbols from build logs

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
\brief The QIntrusiveList class is a template class that provides a list of objects using static storage.
47
47
\internal
48
48
 
49
 
QIntrusiveList creates a linked list of objects.  Adding and removing objects from the 
 
49
QIntrusiveList creates a linked list of objects.  Adding and removing objects from the
50
50
QIntrusiveList is a constant time operation and is very quick.  The list performs no memory
51
51
allocations, but does require the objects being added to the list to contain a QIntrusiveListNode
52
52
instance for the list's use.  Even so, for small lists QIntrusiveList uses less memory than Qt's
102
102
/*!
103
103
\fn void QIntrusiveList::insert(N *object);
104
104
 
105
 
Insert \a object into the list.  If \a object is a member of this, or another list, it will be 
 
105
Insert \a object into the list.  If \a object is a member of this, or another list, it will be
106
106
removed and inserted at the head of this list.
107
107
*/
108
108