| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
QDeclarativeXXX.
|
|
|
|
|
| |
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).
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
master-integration
* 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (42 commits)
doc: Fixed some qdoc errors.
doc: Fixed some qdoc errors.
Fix copyright year.
Fix broken license headers.
doc: Fixed some qdoc errors.
Reusing sheets on Mac OS X 10.5 & above shows painting artifacts.
doc: Fixed some qdoc errors.
QNetworkAccessManager: add method to send custom requests
doc: Fixed some qdoc errors.
Optimization: Avoid calling out to public API function
Mac: submenu shows up at the wrong position
Add operator< and qHash for QSharedPointer and fix operator-.
Don't use QSystemLocale if QT_NO_SYSTEMLOCALE (like QWS)
Don't use QSystemLocale if QT_NO_SYSTEMLOCALE (like QWS)
Optimized QLocale to access system locale on demand.
Fix QRegion under Mac OS X.
update according to Thiago's comments.
Changes: add functionality for dbus auto start to qt
Add license header to this file
readdir64 is not available on HP-UX
...
|
| |
| |
| |
| | |
Reviewed-by: Trust Me
|
|/
|
|
|
| |
Add to translations profile. move stuff out of QObject-context,
correct spelling and contractions, correct usage of tr().
|
| |
|
|
|
|
|
|
| |
The assert in qmlobjectscriptclass.cpp is valid when the call is running
in a correctly created QML environment, but not valid for the test case
which bypasses QML.
|
|
|
|
| |
This reverts commit d914555badcd4761864657e1e335e657b791453f.
|
| |
|
|
|
|
| |
QTBUG-7957
|
| |
|
|
|
|
| |
accordingly.
|
|
|
|
| |
QTBUG-5675
|
|
|
|
| |
QTBUG-6734
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
This should allow QGuard to be removed from Qt and QObjectPrivate::ExtraData.
Having QmlGuard inside QmlDeclarativeData reduces the number of new's, and
creating QmlDeclarativeData is faster than QObjectPrivate::ExtraData anyway.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
QScriptDeclarativeClass.
This allows us to pass QObjects to QML-defined functions which expect
a QVariant (and will presumably help in other cases where we expect
transparent QObject <-> QVariant conversion in the engine).
Task-number: QTBUG-6178
Reviewed-by: Aaron Kennedy
|
| |
|
| |
|
|
|
|
|
|
| |
make use of QVariant::userType over Qvariant::type
make use of char for 1-string character
QCoreApplication::translate is static
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Had some accidental global vars
Task-number: One of the QT-2270s
|
|
|
|
| |
Eventually this should be extended to support modifying list properties.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Also add an autotest for object comparisons
|