| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
QDeclarativeXXX.
|
|
|
|
|
|
|
|
| |
As a value type QmlListProperty doesn't consume any memory in the object.
It also has a companion QmlListReference class that is part of the public
API for C++ developers to interact with that also manages memory issues
that existed with previous solutions (if the containing QObject was
destroyed it left a dangling pointer).
|
|
|
|
| |
Reviewed-by: Trust Me
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
- include headers from own directory with ""
- include headers from own project without private/
- sort includes from most specific to most generic
- make headers self-contained
- some whitespace unification
no attempt was made at making the qt includes consistent regarding the
use of module names and forwarding headers.
no attempt was made at sorting includes.
|
|
|
|
| |
Task-number: QTBUG-5769
|
|
|
|
| |
as it breaks reinstalling the module against existing Qt.
|
|
|
|
| |
Used in Bauhaus.
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Conflicts:
src/declarative/debugger/qmldebug.cpp
src/declarative/fx/qmlgraphicsimagebase_p.h
src/declarative/util/qmlanimation.h
src/declarative/util/qmlstate.h
src/declarative/util/qmltimer.cpp
|
| | |
|
|/ |
|
|
|
|
|
|
|
|
|
| |
By splitting the interface through which the system interacts with bindings
away from a specific implementation, we can introduce highly specialized
implementations for specific optimizations.
This commit also includes a sample optimization for object properties being
assigned directly from a local id.
|
|
|
|
| |
Functionality has been moved to ParentChange.
|
| |
|
|
|
|
| |
This involves the introduction of separation between states and transition application. This was necessary to allow layouts to continue to use transitions.
|
|
|
|
|
| |
Fix up license headers and private warnings, as well as other general
cleanups.
|
|
|
|
|
| |
Make sure we can handle things like PropertyAnimation { property:
"anchors.leftMargin" }
|
|
|
|
| |
Also removed all uses of SetProperty
|
| |
|
| |
|
| |
|
| |
|
|
|