| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
QDeclarativeXXX.
|
|
|
|
|
|
| |
Assigning a string to a value type enum property from a binding was
not working as QmlMetaProperty didn't realise the property was of enum
type.
|
|
|
|
|
| |
QmlBinding exposes way too many implementation details to be confident
about making it public right now.
|
|
|
|
|
|
|
|
| |
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).
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Conflicts:
mkspecs/linux-g++-x11egl/qplatformdefs.h
src/declarative/qml/qmldom.h
src/declarative/util/qmlview.cpp
src/declarative/util/qmlview.h
tools/qdoc3/cppcodemarker.cpp
tools/qmldebugger/standalone/canvasframerate.cpp
tools/qmldebugger/standalone/engine.cpp
tools/qmldebugger/standalone/expressionquerywidget.cpp
tools/qmldebugger/standalone/expressionquerywidget.h
tools/qmldebugger/standalone/objectpropertiesview.cpp
tools/qmldebugger/standalone/objectpropertiesview.h
tools/qmldebugger/standalone/objecttree.cpp
tools/qmldebugger/standalone/qmldebugger.cpp
tools/qmldebugger/standalone/watchtable.cpp
tools/qmldebugger/standalone/watchtable.h
|
| |
| |
| |
| | |
Reviewed-by: Trust Me
|
|/ |
|
|
|
|
| |
QTBUG-7957
|
| |
|
|
|
|
|
|
|
|
| |
Previously QML was inefficiently forwarding the task of invoking
Qt slots to QScript. QML does not implement the more advanced
argument coercian of QScript and does not support method overloading.
These two features are only needed to support legacy C++ classes
(of which QML has none), and are not worth the perf cost to support.
|
|
|
|
| |
Task-number: QTBUG-6033
|
| |
|
|
|
|
|
|
|
|
|
| |
If a property type was a composite object pointer
(e.g. property MyObject obj), it was not being correctly identified as an
object type.
Task-number: QTBUG-6335
Reviewed-by: Aaron Kennedy
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|
| |
|
|
|
|
| |
It seems we're going to have to so a syncqt/configure in Qt modules.
|
|\
| |
| |
| |
| |
| |
| | |
git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Conflicts:
src/declarative/qml/qmlmetatype.cpp
|
| | |
|
|/
|
|
| |
May help modularization (syncqt and configure are Qt-specific).
|
|
|
|
| |
as it breaks reinstalling the module against existing Qt.
|
| |
|
| |
|
|
|
|
| |
This was causing crashes on windows.
|
| |
|
|
|
|
|
| |
This is both more efficient, and allows the creation of dynamic
properties.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|