summaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Removed unecessary duplicate files.Kevin Wright2011-11-241-2/+2
|
* Fix link to WebView examples.Casper van Donderen2011-11-241-9/+10
|
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-doc-stagingCasper van Donderen2011-11-241-13/+16
|\
| * Fixed lists to be ordered lists and added curly bracketsKevin Wright2011-11-241-13/+16
| |
* | Fix link to ListView and WebView example pages.Casper van Donderen2011-11-241-2/+2
| |
* | Change the links to behavior examples.Casper van Donderen2011-11-242-2/+2
|/
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-doc-stagingKevin Wright2011-11-241-4/+4
|\
| * Fix warning about unbalanced parantheses.Daniel Molkentin2011-11-241-4/+4
| | | | | | | | Reviewed-By: Robert Loehning
* | Split ListView and WebView examples.Kevin Wright2011-11-241-1/+27
|/
* Close the comments on some examples.Casper van Donderen2011-11-241-2/+13
|
* Update documentation for QML examples.Casper van Donderen2011-11-2410-128/+74
|
* Fix manifest install rule on windowsDaniel Molkentin2011-11-231-2/+8
| | | | Reviewed-by: Oswald Buddenhagen
* Help: Add \depends to all declarative examples & demosDaniel Molkentin2011-11-229-9/+147
| | | | Reviwed-By: trustme
* Add Symbian platform notes.Casper van Donderen2011-11-222-1/+457
|
* Add C++11 support and QThreadLocalStorage changes to docs.Casper van Donderen2011-11-221-0/+8
| | | | | | The C++11 support was not documented in the "What's new" page. Reviewed-By: Frederik Gladhorn
* Doc: Copy manifest files to the places where Creator expects them.Daniel Molkentin2011-11-211-1/+14
| | | | Reviewed-by: Casper van Donderen
* Update Supported Platforms Documentation.Casper van Donderen2011-11-171-0/+6
| | | | | | | WinXP MinGW, Win7 64-bit MSVC and Ubuntu 64-bit were added to the documentation. Reviewed-By: Antti Rajaniemi
* Update the supported platforms page.Casper van Donderen2011-11-141-1/+5
| | | | | Windows XP, Win7 32-bit and Mac 106 Cocoa were missing from the supported platforms table.
* Update supported platforms and remove commercial page.Casper van Donderen2011-11-108-1917/+36
| | | | | | | | | | The supported platforms page conatined a lot of platforms that are untested for Qt 4.8, so those are removed. The platform notes had not been updated since 2009 and were therefore severely outdated. Nokia does not provide a commercial edition of Qt anymore. A user can find the link to purchasing Qt through the Qt Developer Network at http://developer.qt.nokia.com
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-doc-staging into ↵Qt Continuous Integration System2011-11-0114-25/+37
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qt/qt-doc-staging: Missing icon in the designer documentation Fridge magnet example code snippet error qpaintdevice-qt3.html documentation errors QWebElement example missed information QSPlitter style-sheet example was invalid Errors in QSqlDriver::handle examples QGLColormap example was invalid QPointer made no mention of QWeakPointer Invalid links to http://developer.symbian.org QNetworkDiskCache documentation missed information QStyleSheet example used a property that is hidden. QList document referenced to non existing function QXmlQuery::bindVariable documentation bug Fix multiple typos in QLineF documentation. Qmake project file docs lacked information. Documentation error in SSL document Fix multiple typos in documentation. Fix for QVector::toList - code example documentation.
| * Missing icon in the designer documentationartoka2011-11-012-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | In the documentation there was missing icon in the Object Inspector section. Added reference to editbreaklayout.png icon and cleared a bit the description. Added also the image to the doc/src/images - folder. Task-number: QTBUG-17739 Merge-request: 2698 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
| * QSPlitter style-sheet example was invalidartoka2011-11-011-1/+1
| | | | | | | | | | | | | | | | | | | | QSPlitter::handle:pressed - example missed "image:" text when image is set. Added "image:". Task-number: QTBUG-20069 Merge-request: 2698 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
| * Errors in QSqlDriver::handle examplesartoka2011-11-011-3/+3
| | | | | | | | | | | | | | | | | | | | | | In the examples the const char* variable was compared to QString with "==" operator which doesn't work. Changed the comparison to use qstrcmp - method. Task-number: QTBUG-20089 Merge-request: 2698 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
| * QGLColormap example was invalidartoka2011-11-011-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | QGLColormap example missed int argc and char *argv[] from main - method. Filling the QGLColormap with for - loop was not working because of the 0 - size. Added arguments to main - method and changed the filling so that for-loop uses size of 256. Task-number: QTBUG-3563 Merge-request: 2698 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
| * Invalid links to http://developer.symbian.orgartoka2011-11-012-3/+3
| | | | | | | | | | | | | | | | | | | | | | Fixed "SBSv2" and "Installing qt for the Symbian platform" links from the installation.qdoc. Fixed platform security link from the external-resources.qdoc. Task-numbers: QTBUG-18313, QTBUG-18313, QTBUG-11312 Merge-request: 2698 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
| * QStyleSheet example used a property that is hidden.artoka2011-11-011-1/+1
| | | | | | | | | | | | | | | | | | | | In the QStyleSheet documentation an example for boolean used QDialog {etch-disabled-text:1} property that is undocumented. Changed the property to QDialogButtonBox{ dialogbuttonbox-buttons-have-icons: 1; } that is documented. Task-number: QTBUG-11489 Merge-request: 2698 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
| * QXmlQuery::bindVariable documentation bugartoka2011-11-011-1/+2
| | | | | | | | | | | | | | | | | | | | Second code example in the documentation stated that the setQuery-method should be called before bindVariable-method. Changed so that bindVariable-method is called first and then the setQuery-method as it should be. Task-number: QTBUG-17025 Merge-request: 2698 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
| * Qmake project file docs lacked information.artoka2011-11-011-1/+9
| | | | | | | | | | | | | | | | | | | | The qmake project files documentation lacked information about "*="-operator usage. Added couple of links pointing to the qmake advanced usage - page where "*="-usage is explained. Task-number: QTBUG-9675 Merge-request: 2698 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
| * Documentation error in SSL documentartoka2011-11-011-1/+1
| | | | | | | | | | | | | | | | | | The order of setting environment variable OPENSSL_LIBS and configure was wrong. OPENSSL_LIBS is now instructed to be set first before configure. Task-number: QTBUG-14521 Merge-request: 2698 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
| * Fix multiple typos in documentation.artoka2011-11-013-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Link typo in the forum nokia icon article. Typo in the Symbian qt introduction document. Typos in the Diagram Scene example documentation. The link url was ending with a slash character in the icon article. Slash characted removed. In the symbian introduction doc there was a missing "p" character in the environment variables listing (QT_SIS_OPTIONS). There was 6 typos in the Diagram Scene example documentation. Task-numbers: QTBUG-13983, QTBUG-11820, QTBUG-14732 Merge-request: 2698 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
| * Fix for QVector::toList - code example documentation.artoka2011-11-011-2/+2
| | | | | | | | | | | | | | | | | | Code example in the documentation used QString values in QVector<double>. Task-number: QTBUG-21067 Merge-request: 2698 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
* | Merge remote-tracking branch 'origin/4.7' into qt-4.8-from-4.7Liang Qi2011-10-311-1/+90
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/src/declarative/declarativeui.qdoc doc/src/mainpage.qdoc doc/src/platforms/supported-platforms.qdoc doc/src/qt-webpages.qdoc src/network/access/qnetworkdiskcache.cpp
| * \ Merge remote-tracking branch 'upstream/4.7' into 4.7Sergio Ahumada2011-10-271-1/+1
| |\ \ | | | | | | | | | | | | | | | | Conflicts: src/gui/inputmethod/qcoefepinputcontext_s60.cpp
| | * | Doc: Fix example codeSergio Ahumada2011-10-211-1/+1
| | | | | | | | | | | | | | | | Task-number: QTWEBSITE-281
| * | | Fix security problem on webpage due to bad JSCasper van Donderen2011-10-211-12/+1
| | | | | | | | | | | | | | | | Reviewed-by: Trust Me
| * | | Doc: adding link to the Qt Quick Components for Symbian page.Jerome Pasion2011-10-214-0/+125
| |/ / | | | | | | | | | Reviewed-by: Geir Vattekar <geir.vattekar@nokia.com>
* | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-symbian-staging into ↵Qt Continuous Integration System2011-10-281-1/+1
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qt/qt-symbian-staging: Symbian configuration parameter change for linux building Improve patch_capabilities script output. Fix QtSql autotest server addresses Update SQLite version number in legal document Update SQLite version mentioned in licence document Symbian Linuxification building case changes Fix FTP example to handle failure to open network session Use QBasicAtomicInt as a static variable FTP - fix interoperability issues with SIZE command QS60StyleAnimation exception safety Catch potential throw in ~QSymbianControl Fixed access to null threadData in ~QObjectPrivate Fix the build for makefile build system of Symbian Symbian - fix compile error when default configured
| * | Update SQLite version number in legal documentHonglei Zhang2011-10-251-1/+1
| | | | | | | | | | | | | | | | | | SQLite version in Qt 4.8 is upcated to 3.7.7.1. Reviewed-by: Trust Me
| * | Update SQLite version mentioned in licence documentHonglei Zhang2011-10-241-1/+1
| | | | | | | | | | | | | | | | | | | | | SQLite version has been updated to 3.7.7.1 since Qt 4.8. The version number is corrected in licence document for 3rd party components. Reviewed-by: Trust Me
* | | Fix security issue on website due to bad JS.Casper van Donderen2011-10-211-12/+1
| | | | | | | | | | | | Reviewed-by: Trust Me
* | | Merge branch '4.8' of scm.dev.nokia.troll.no:qt/qtJerome Pasion2011-10-1910-203/+141
|\ \ \ | |/ /
| * | Merge branch 'qt-4.8-from-4.7' of scm.dev.nokia.troll.no:qt/qt-integration ↵Qt Continuous Integration System2011-10-173-132/+124
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'qt-4.8-from-4.7' of scm.dev.nokia.troll.no:qt/qt-integration: Doc updates to installation, platform notes and symbian introduction.
| | * \ Merge branch 4.7 into qt-4.8-from-4.7Qt Continuous Integration System2011-10-103-132/+124
| | |\ \ | | | |/
| | | * Doc updates to installation, platform notes and symbian introduction.Eero Hyyti2011-10-103-137/+133
| | | |
| | | * Document updates to Qt for Symbian installation instructions and platform notes.Eero Hyyti2011-09-272-291/+374
| | | |
| * | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-doc-staging into ↵Qt Continuous Integration System2011-10-14302-396/+572
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qt/qt-doc-staging: Update 4.8.0 changelog Changelog: update changes-4.8.0 for Richard Add briefs for the new 4.8 examples. Add briefs to the new 4.8 demos. Add a brief to all demos and examples for manifest
| | * \ \ Merge remote-tracking branch 'qt-doc-review/master'Casper van Donderen2011-10-14305-398/+703
| | |\ \ \
| * | \ \ \ Merge branch 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2011-10-071-54/+3
| |\ \ \ \ \ | | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1: purge "Translation Rules for Plurals" add -list-languages option to lupdate
| | * | | | purge "Translation Rules for Plurals"Oswald Buddenhagen2011-10-061-54/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the page had only exemplary character and was thus utterly incomplete. document the new "lupdate -list-languages" instead.
| * | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-doc-staging into ↵Qt Continuous Integration System2011-10-071-4/+6
| |\ \ \ \ \ | | | |/ / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qt/qt-doc-staging: Doc updates to "Installing Qt for the Symbian Platform" page.