| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Reviewed-by: Trust Me
|
|
|
|
|
| |
Reviewed-by: Trust Me
(cherry picked from commit ac5c099cc3c5b8c7eec7a49fdeb8a21037230350)
|
|
|
|
| |
Reviewed-by: Christian Kamm
|
|
|
|
|
| |
Authored-by: Roberto Raggi
Reviewed-by: Aaron Kennedy
|
|
|
|
|
|
| |
NodePool does a block free on the memory, so the (empty) destructors
are never called, and add lots of noise to code coverage analysis. Added
a note in the source about the block freeing.
|
|
|
|
| |
Reviewed-by: Roberto Raggi
|
| |
|
|
|
|
|
| |
Task-number:
Reviewed-by: Aaron Kennedy
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Some functions were marked with Q_DECL_IMPORT where they should just be
Q_CORE_EXPORT. The reason is that this macro is expanded to nothing in
case of static builds whereas Q_DECL_IMPORT isn't (it is a dllimport).
That leads the linker to try to import it and it shouldn't.
Task-number: QTBUG-10791
Reviewed-by: gabi
|
|
|
|
|
|
|
| |
Recognize regular expression classes and escape sequences.
Task-number: QTBUG-8108
Reviewed-by: Olivier Goffart
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (29 commits)
Recognize identifiers containing unicode escape sequences.
Fix README
Fix doc: QML_DECLARE_TYPE is no longer necessary
Fix doc: remote contents requires qmldir
Fixed parsing of inner labelled statements.
Doc
Remove unsupported plugin version flags in .pro files of declarative examples
Documentation typo.
More QML doc consistency.
Ensure existing image is gone before next photo selection.
Don't use zoomfactor.
Doc: in QML use "real" and "enumeration", not "qreal" and "enum"
Doc: Put "default" property label on same line as property name
Wait for debug clients asynchronously instead of blocking creation of
Test not reliable
ResizeMode support for QGraphicsWidgets created with QDeclarativeView
More class documentation fixes for declarative.
Simplify QML import plugin deployment lines
Add QML imports to s60installs.pro
Cleanup photoviewer demo.
...
|
| |
| |
| |
| |
| | |
Task-number: QTBUG-8108
Reviewed-by: Olivier Goffart
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The JS grammar is ambigious and the following statement can be parsed
as an object-literal followed by an inserted semicolon or as two
labelled statements.
outer: {
inner: {}
}
In the old days we used to resolve the conflict by reducing the
statement to an expression statement but this was wrong so
now we prefer the labelled statement. As nice side effect, we
pass two more tests in tests/auto/declarative/parserstress.
Task-number: QTBUG-8108
|
|/
|
|
|
|
|
| |
More corrections to declarations to ensure symbol visibility is correct
Task-number: QTBUG-9998
Reviewed-by: TrustMe
|
|
|
|
|
| |
Always use private/. The WinSCW compiler doesn't search the current
directory, for whatever reason.
|
|
|
|
| |
Task-number: QTBUG-7860
|
| |
|
|
|
|
| |
Task-number: QTBUG-9367
|
| |
|
|
|
|
| |
Protect the forward declaration of qstrtod with a QT_BEGIN/END namespace
|
|
|
|
| |
QTBUG-8676
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Now it is possible to define bindings using the `on' context keyword.
For example, you can write
Behavior on opacity {
NumberAnimation { duration: 500 }
}
instead of
opacity: Behavior {
NumberAnimation { duration: 500 }
}
|
|
|
|
| |
QDeclarativeXXX.
|
|
|
|
| |
Reviewed-by: Trust Me
|
| |
|
|
|
|
| |
includes workaround for breakage with old g++
|
| |
|
|
|
|
| |
Reviewed-by: Christian Kamm
|
|
|
|
| |
Reviewed-by: Christian Kamm
|
|
|
|
| |
Source Elements.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
the classes across shared libraries/plug-ins.
|
|
|
|
| |
It seems we're going to have to so a syncqt/configure in Qt modules.
|
|
|
|
| |
Reviewed by: Roberto Raggi.
|
| |
|
|
|
|
|
|
| |
Don't insert T_SEMICOLON when yytoken == -1
Done-with: joerg
|
| |
|
| |
|
| |
|
| |
|
| |
|