platform/upstream/qttools.git
12 years agoUse new plugin system in Qt Designer.
Friedemann Kleint [Fri, 17 Feb 2012 09:24:29 +0000 (10:24 +0100)]
Use new plugin system in Qt Designer.

- Change interface names to use the prefix "org.qt-project.Qt."
- Add json files and use new macros.

Change-Id: I2b0e6ac59b6dfbdced70751921a588f6e417615f
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
12 years agoRemove duplicated plugin macro to fix compilation.
Toby Tomkins [Thu, 16 Feb 2012 03:24:15 +0000 (13:24 +1000)]
Remove duplicated plugin macro to fix compilation.

Change-Id: Ie6098bc2b5e54ee1d1bef1eace05f5afe71d3c70
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
12 years agoFixed dependencies in sync.profile
Rohan McGovern [Wed, 15 Feb 2012 02:54:07 +0000 (12:54 +1000)]
Fixed dependencies in sync.profile

Remove duplicate entry for qtscript.

Add missing qtquick1.

Change-Id: Icb81f895fbb5c0f424fed4e988a0307b90562bab
Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
12 years agoQt Designer: Fix compilation.
Friedemann Kleint [Tue, 7 Feb 2012 09:39:59 +0000 (10:39 +0100)]
Qt Designer: Fix compilation.

- Change module name of QDeclarativeView to quick1,
  remove declarative.

Change-Id: I706832407151b03b26a3a34e00cee11e324a3439
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
12 years agoFix parsing error in CMake macro.
Stephen Kelly [Thu, 2 Feb 2012 15:16:59 +0000 (16:16 +0100)]
Fix parsing error in CMake macro.

One extra )

Change-Id: I47b64a06112a54a4199fd3fb23ded74d89bbcdef
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: David Faure <faure@kde.org>
12 years agoAdd the possibility to patch additional executables.
Eike Ziller [Wed, 14 Sep 2011 12:14:34 +0000 (14:14 +0200)]
Add the possibility to patch additional executables.

Change-Id: I47ecf04f538e094fe67110e627a5f17a34438df9
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Morten Johan Sørvig <morten.sorvig@nokia.com>
12 years agoDesigner: Fix compilation.
Friedemann Kleint [Wed, 1 Feb 2012 08:24:03 +0000 (09:24 +0100)]
Designer: Fix compilation.

- QFileDialog::selectedFilter()->QFileDialog::selectedNameFilter()
- Message handler refactoring

Change-Id: Ie80ff0948ac6a6dd5cf0d785b81720d982e1f4fa
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
12 years agoRemove "All rights reserved" line from license headers.
Jason McDonald [Tue, 24 Jan 2012 05:22:34 +0000 (15:22 +1000)]
Remove "All rights reserved" line from license headers.

As in the past, to avoid rewriting various autotests that contain
line-number information, an extra blank line has been inserted at the
end of the license text to ensure that this commit does not change the
total number of lines in the license header.

Change-Id: Ib4b7580dda53886247ad6eb10d17d8e67c51980d
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
12 years agoRemove dependency on designer from linguist and headers autotest.
Toby Tomkins [Tue, 24 Jan 2012 05:08:33 +0000 (15:08 +1000)]
Remove dependency on designer from linguist and headers autotest.

When compiling with shadow build option the Qt sources are not
available. The QtDesigner library requires direct access to these
sources to compile. Hence if we remove the dependency on designer
(which is not required) we can compile successfully with the
shadow build configure option.

Change-Id: I36fa408a32a354d54a9b47aed8a7cba447cf4129
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
12 years agoUpdate obsolete contact address.
Jason McDonald [Fri, 20 Jan 2012 05:23:30 +0000 (15:23 +1000)]
Update obsolete contact address.

Replace Nokia contact email address with Qt Project website.

Change-Id: I3841a7c154b90b73fe8f498fda035c8b3545c692
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
12 years agoQt Designer: Add translation-attributes to string list properties.
Friedemann Kleint [Thu, 12 Jan 2012 11:10:47 +0000 (12:10 +0100)]
Qt Designer: Add translation-attributes to string list properties.

- Add translation parameters to XML schema for ui.
- Introduce PropertySheetStringListValue to property sheet,
  load & save code, add to property sheet and property editor.

Task-number: QTBUG-8926
Task-number: QTBUG-20440

Change-Id: Ib5e9e2e9ba603bb68984a102e3c3fc8ff1cb4df0
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Jarek Kobus <jaroslaw.kobus@nokia.com>
12 years agolupdate: Handle translation-attributes of string list properties.
Friedemann Kleint [Thu, 19 Jan 2012 08:31:11 +0000 (09:31 +0100)]
lupdate: Handle translation-attributes of string list properties.

Stringlists now have translation attributes that apply to all
items.

Initial-patch-by: Jarek Kobus <jaroslaw.kobus@nokia.com>
Task-number: QTBUG-8926
Task-number: QTBUG-20440
Change-Id: I230f3907631074df394238e30b3ed7a15adcca4b
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Jarek Kobus <jaroslaw.kobus@nokia.com>
12 years agoFixed compile.
Rohan McGovern [Fri, 20 Jan 2012 01:13:05 +0000 (11:13 +1000)]
Fixed compile.

QDir::convertSeparators -> QDir::toNativeSeparators

convertSeparators was deprecated since Qt 4.2 (!) and recently was
removed from Qt 5.

Change-Id: I6a7dad582ed4270cfbd09defc94c73103bb2a9fe
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
12 years agoRemove the use of QT_MODULE()
Gunnar Sletta [Mon, 9 Jan 2012 08:31:36 +0000 (09:31 +0100)]
Remove the use of QT_MODULE()

Change-Id: I8b9f3c04b0089047c6583f986a2fb903cf7bf62d
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
12 years agoCompile fix for accessibility.
Friedemann Kleint [Fri, 13 Jan 2012 08:18:19 +0000 (09:18 +0100)]
Compile fix for accessibility.

Change-Id: Ib2e668441da3fa5ab176a2dea6b5b8f22dbfec5b
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
12 years agoQt Designer: Simplify property editor for translatable properties.
Friedemann Kleint [Wed, 11 Jan 2012 11:11:59 +0000 (12:11 +0100)]
Qt Designer: Simplify property editor for translatable properties.

- Introduce sub-propertymanager for translatable properties
  inheriting PropertySheetTranslatableData.
- Use common enumeration values for sub-propertymanager functions
  to make it easier to chain them.

Task-number: QTBUG-8926
Task-number: QTBUG-20440

Change-Id: I8e99aa01fdca7e474a0ec83b7209a28a2a689bf9
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
12 years agoUpdate copyright year in Nokia copyright headers.
Jason McDonald [Tue, 10 Jan 2012 06:23:26 +0000 (16:23 +1000)]
Update copyright year in Nokia copyright headers.

Update copyright headers from before 2011

Change-Id: I7d822c71326283db79fa392022baa09a3c22b331
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
12 years agosync.profile: introduce dependency on qtjsbackend
Rohan McGovern [Tue, 10 Jan 2012 08:04:41 +0000 (18:04 +1000)]
sync.profile: introduce dependency on qtjsbackend

sync.profile needs to enumerate indirect dependencies too.
qtdeclarative now depends on qtjsbackend; update sync.profile
accordingly.

Change-Id: Ia6ccda2cfb971b2cd58bd9e2d880c76a5603ad37
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
12 years agoReplace Q_TYPENAME by typename
Olivier Goffart [Wed, 2 Nov 2011 18:38:10 +0000 (19:38 +0100)]
Replace Q_TYPENAME by typename

Q_TYPENAME is being removed.

Change-Id: I4b4b34dbf87e3f2f3a604d4370d1c0e55e1553c5
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
12 years agoPort assistant to QNetworkAccessManager
Friedemann Kleint [Mon, 9 Jan 2012 10:22:33 +0000 (11:22 +0100)]
Port assistant to QNetworkAccessManager

Change-Id: Idd3f5ebbb6719861ee20d9cef2fc5d98c24360f3
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
12 years agoQt Designer: Simplify code for translatable properties.
Friedemann Kleint [Fri, 6 Jan 2012 15:37:12 +0000 (16:37 +0100)]
Qt Designer: Simplify code for translatable properties.

Introduce base class for PropertySheetStringValue,
PropertySheetKeySequenceValue, which allows for removing
redundant code to set/retrieve the translation parameters
to/from the DOM classes.

Task-number: QTBUG-8926
Task-number: QTBUG-20440
Change-Id: I5b65fff2bb27be82d04f96cf0d66652887b1c4b7
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
12 years agoUpdate copyright year in license headers.
Jason McDonald [Thu, 5 Jan 2012 06:10:00 +0000 (16:10 +1000)]
Update copyright year in license headers.

Change-Id: I89fb3609f49f9a4f1e7d658b05e212febcb14c94
Sanity-Review: Jason McDonald <jason.mcdonald@nokia.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
12 years agoConvert macros to functions.
Stephen Kelly [Mon, 19 Dec 2011 21:51:50 +0000 (22:51 +0100)]
Convert macros to functions.

Change-Id: I08104d1189ed7d7debcb9f5bd38e8862423ef2c3
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Alexander Neundorf <neundorf@kde.org>
Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
12 years agoAvoid using Trolltech logo in documentation.
Jason McDonald [Tue, 20 Dec 2011 04:32:08 +0000 (14:32 +1000)]
Avoid using Trolltech logo in documentation.

Change-Id: Iafc6ec21069994599506562edfcd1c98a850c5f7
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
12 years agoRename trolltech-logo.png.
Jason McDonald [Tue, 20 Dec 2011 04:22:47 +0000 (14:22 +1000)]
Rename trolltech-logo.png.

This file contains a Qt logo, not a Trolltech logo.

Change-Id: I67bdee76cb2e3e3ef762b98b729ec0babc668327
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
12 years agoPort to list(APPEND)
Stephen Kelly [Mon, 19 Dec 2011 21:43:13 +0000 (22:43 +0100)]
Port to list(APPEND)

Change-Id: Ib0eeef10b68edb5a7edc07d400e1d11c1bb7ffc3
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Alexander Neundorf <neundorf@kde.org>
Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
12 years agoPort to MacroParseArguments.
Stephen Kelly [Mon, 19 Dec 2011 21:39:23 +0000 (22:39 +0100)]
Port to MacroParseArguments.

Change-Id: I030eb6e1bcd99ec867ca4f5a97fcc3bc7002b6b2
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Alexander Neundorf <neundorf@kde.org>
Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
12 years agoFix CMake style.
Stephen Kelly [Mon, 19 Dec 2011 21:35:19 +0000 (22:35 +0100)]
Fix CMake style.

Change-Id: I4ec793889a7f6564938203766737c957f2044a83
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Alexander Neundorf <neundorf@kde.org>
Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
12 years agoRemove unused include.
Stephen Kelly [Sun, 18 Dec 2011 10:56:57 +0000 (11:56 +0100)]
Remove unused include.

Change-Id: I599b45ff8aaa17fb4a255b10b008fa6c0455c5d3
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Alexander Neundorf <neundorf@kde.org>
Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
12 years agoFix compilation due to header changes
Sergio Ahumada [Sun, 18 Dec 2011 10:41:39 +0000 (11:41 +0100)]
Fix compilation due to header changes

- Fix QtWidgets/QAbstractProxyModel   => QtCore/QAbstractProxyModel
- Fix QtWidgets/QItemSelection        => QtCore/QItemSelection
- Fix QtWidgets/QItemSelectionModel   => QtCore/QItemSelectionModel
- Fix QtWidgets/QSortFilterProxyModel => QtCore/QSortFilterProxyModel
- Fix QtWidgets/QStringListModel      => QtCore/QStringListModel

Change-Id: Id410fb4c6ae89d32eac3242b9a8cbfb3442b0555
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
12 years agoQt Designer/QtUiLoader: Remove support for QWorkspace.
Friedemann Kleint [Fri, 9 Dec 2011 12:18:21 +0000 (13:18 +0100)]
Qt Designer/QtUiLoader: Remove support for QWorkspace.

Change-Id: Ic0ffb13c5d30528800c1beae85d5224e8f2f7104
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Reviewed-by: David Faure <david.faure@kdab.com>
12 years agomake $$join() implementation qmake-compliant
Oswald Buddenhagen [Tue, 15 Nov 2011 15:07:01 +0000 (16:07 +0100)]
make $$join() implementation qmake-compliant

Task-number: QTCREATORBUG-6441
Change-Id: I1d18c81f76cda71654a85c23b7b53b4aae0d51c6
Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
(cherry picked from commit 555e539760998fcff1e3117abc5080c4fee47275)
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>

12 years agoMake sysrootify case-insensitive on windows
Daniel Teske [Tue, 1 Nov 2011 20:43:54 +0000 (21:43 +0100)]
Make sysrootify case-insensitive on windows

Task-Number: QTCREATORBUG-6419

Change-Id: If3ab035ee3a117744213d5e3db3ffa41f7283d53
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
(cherry picked from commit e7c6b9dbbbba8224dd7abaa2b513bec66fbf3abf)
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>

12 years agoWork around MinGW GCC version >=4.5 always_inline+dllexport bug.
Ruben Van Boxem [Sun, 30 Oct 2011 11:27:21 +0000 (12:27 +0100)]
Work around MinGW GCC version >=4.5 always_inline+dllexport bug.

Use regular inline instead of always_inline for MinGW GCC build. GCC 4.5
and later spit out an error on always_inline dllexport functions, which
breaks the build for these versions of GCC (see bug 5938).

Change-Id: I444380ff98071b4653a91d074494ace579b4a622
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
(cherry picked from commit 310b446a81dd927739e503b03389641f1aa13ab4)
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>

12 years agoRemoved dead assignments
Robert Loehning [Fri, 21 Oct 2011 13:23:53 +0000 (15:23 +0200)]
Removed dead assignments

Change-Id: I1368cb534284016479211160cd8bf3cbc2f738e4
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
(cherry picked from commit 75719f04ee2c41312c70fee2271796d05ea08c0e)
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>

12 years agoimplement qt5 $$sort_depends() and $$resolve_depends()
Oswald Buddenhagen [Mon, 11 Jul 2011 13:40:07 +0000 (15:40 +0200)]
implement qt5 $$sort_depends() and $$resolve_depends()

Task-number: QTCREATORBUG-5289
Change-Id: I15e08005c13d12afd5791796d676b30c726fadc3
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
(cherry picked from commit 330e118424f67d7e9de764b2d1fb1dad8000974e)
(cherry picked from commit 7cd17f3f41dfbcf6c7cb791dd4db890815f8468c)
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
12 years agoQt Linguist: Fix crashes
Takumi ASAKI [Wed, 30 Nov 2011 19:29:29 +0000 (20:29 +0100)]
Qt Linguist: Fix crashes

Fix crash when select translation after close and open file.
This patches includes refactoring of b68b59f252930538cc124b31decc990ab57bea20

Merge-request: 1480
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
(cherry picked from commit 27c322e0f88fa0cccba8cf914655cacb5dae51de)
Change-Id: I27c322e0f88fa0cccba8cf914655cacb5dae51de
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>

12 years agoImprove lupdate
Roberto Raggi [Wed, 7 Dec 2011 09:24:01 +0000 (10:24 +0100)]
Improve lupdate

Merge the QML and the Javascript front-ends. Also, change the
way we process directives in QML/JS comments. The old code
was processing all the directives before visiting the AST nodes.
Unfortunately, this doesn't play nice with TRANSLATOR-like
directives.

Added support for translating extended Javascript files. That is,
QML/JS extends Javascript with pragma directives (e.g. .pragma).
We emulate the `real' QML engine and we simply remove the pragmas
from the original source code.

Change-Id: Ie2536b10199a587b97f41c5e0560acabae981807
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
12 years agoAvoid duplicating qtestlib usage text.
Jason McDonald [Mon, 12 Dec 2011 06:13:34 +0000 (16:13 +1000)]
Avoid duplicating qtestlib usage text.

The valid qtestlib command-line options change over time.  Refer to the
documentation rather than creating an ongoing maintenance problem by
duplicating the list of options.

Change-Id: Id16b71e611f80b89c48b73490b816f5b908699d6
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
12 years agoMake it possible for CMake to find linguist and dbus tools.
Stephen Kelly [Thu, 1 Dec 2011 12:33:30 +0000 (13:33 +0100)]
Make it possible for CMake to find linguist and dbus tools.

This includes the BSD licenced CMake macros for invoking
those tools.

Change-Id: I57c2994af2220353a845b6622b89291de349008d
Reviewed-by: Clinton Stimpson <clinton@elemtech.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Sanity-Review: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>

12 years agoRemove TESTED_CLASS/TESTED_FILES comments from tests.
Jason McDonald [Tue, 6 Dec 2011 00:42:51 +0000 (10:42 +1000)]
Remove TESTED_CLASS/TESTED_FILES comments from tests.

These comments were all empty.  Appropriate naming of tests and
appropriate placement of tests within the directory tree provide more
reliable indicators of what is being tested.

Change-Id: I00c7ec38e2febd68179952f683e579c82d3d79c9
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
12 years agoCorrect QtUiTools library suffix.
Toby Tomkins [Tue, 6 Dec 2011 03:29:22 +0000 (13:29 +1000)]
Correct QtUiTools library suffix.

The project file change cleans up the previous version and follows the
coding style of the module. This fixes the suffix issue implicitly by
correctly loading module configuration.

Task-number: QTBUG-7169

Change-Id: If0a746ee3a61ba1a6b66f7d73f0470cdb9032064
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
12 years agoPre-emptive changes to StringBuilder compile anomaly.
Toby Tomkins [Mon, 5 Dec 2011 05:39:38 +0000 (15:39 +1000)]
Pre-emptive changes to StringBuilder compile anomaly.

The StringBuilder issue occured after making changes to the pro file.
This change adds the use of QT_USE_QSTRINGBUILDER, however it does not
compile correctly with the above change. Added QByteArray to explicitly
define the dynamic name and return it back as char*.

Change-Id: I23ec434deb52da2d7b27f3e7fb17ceba4aa36d4f
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Reviewed-by: hjk <qthjk@ovi.com>
12 years agolupdate: Allow trailing commas in QtScript/JS object literals
Kent Hansen [Thu, 1 Dec 2011 07:22:48 +0000 (08:22 +0100)]
lupdate: Allow trailing commas in QtScript/JS object literals

As per ECMA-262 5th edition, section 11.1.5, trailing commas should
be allowed in object literals. E.g.

{ foo: 10, }

shouldn't cause a syntax error; the comma should simply be ignored.

Task-number: QTBUG-22970
Change-Id: I3e730ad3001760475e5e40bb4a28a05b0baf5c7e
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
12 years agolupdate: Regenerate QtScript/JS parser
Kent Hansen [Thu, 1 Dec 2011 07:09:38 +0000 (08:09 +0100)]
lupdate: Regenerate QtScript/JS parser

The latest version of qlalr produces output that is different from
the previous version, even if the grammar file didn't change.

Also remove stale line from QtScript/JS grammar. (It had mistakenly
been removed from the generated parser but not from the input file.)

Change-Id: Icfc7d154230b5e908a9617c7c1a3cd607879bef9
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
12 years agoAdd correct namespace macros around Qt classes.
Toby Tomkins [Wed, 30 Nov 2011 07:30:27 +0000 (17:30 +1000)]
Add correct namespace macros around Qt classes.

This change is required to support generation of correctly namespaced
code that can be used by Qt binaries configured with the -qtnamespace
option.

Task-number: QTBUG-19579

Change-Id: I6f8db9e0c60a50b51a79c1c09ac6aa7e9ace07c0
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
12 years agofixed error generating wrong introspection string in header output file
Ralf Habacker [Tue, 25 Oct 2011 08:34:11 +0000 (10:34 +0200)]
fixed error generating wrong introspection string in header output file

When using dbus introspection files with CRLF encoding the CR is not
handled and results into a CR code at a wrong location in the output file

Bug 17634

Change-Id: If48a571a01ffe6d135f79872235341a06fb3a75f
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
12 years agoGracefully disable designer when QtCore sources aren't available.
Rohan McGovern [Wed, 23 Nov 2011 02:48:32 +0000 (12:48 +1000)]
Gracefully disable designer when QtCore sources aren't available.

Designer directly includes some source code from the qtbase repository,
so it can't be compiled against an installed Qt.  Warn rather than
fail in this case.

Change-Id: I9b0395cabf13ad712cfbd4b2f661c873fa0b3b5f
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
12 years agoQt Linguist: Fix crash after select 2nd translation in lengthvariant
Takumi ASAKI [Thu, 17 Nov 2011 15:26:05 +0000 (16:26 +0100)]
Qt Linguist: Fix crash after select 2nd translation in lengthvariant

* MessageEditor keeps deleted editor as m_selectionHolder.

QOjbect::destroyed() SIGNAL doesn't fit to fix this problem
due to destruction order problem.

Merge-request: 1466
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
(cherry picked from commit b68b59f252930538cc124b31decc990ab57bea20)
Change-Id: Ib68b59f252930538cc124b31decc990ab57bea20
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>

13 years agoadd -list-languages option to lupdate
Oswald Buddenhagen [Thu, 6 Oct 2011 14:56:16 +0000 (16:56 +0200)]
add -list-languages option to lupdate

(cherry picked from commit 3b3788a25f58fc443a48672c8e852e1c8658ac4e)

Change-Id: I4523cde9b12268790c32d4a129c962c3d48ed1b9
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
13 years agoremove dead code
Oswald Buddenhagen [Tue, 4 Oct 2011 09:30:37 +0000 (11:30 +0200)]
remove dead code

(cherry picked from commit a3e91910e6eed7f5523009eb0a5439f4019d16ed)

Change-Id: I8b7cac5a65c9ee17f58562d1951496ede86c71a0
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
13 years agoQt Designer: Fix static linking on Mac.
Friedemann Kleint [Wed, 9 Nov 2011 10:05:41 +0000 (11:05 +0100)]
Qt Designer: Fix static linking on Mac.

Add a comment in shared.pri explaining the problem.
See also e7762b60d519c9ae4b47f6c4ceece584408247ea

(cherry picked from commit 74884dd3821b22453804cd726e8d10908f493adf)

Reviewed-by: Jarek Kobus <jaroslaw.kobus@nokia.com>
Task-number: QTBUG-22542

Change-Id: Id93bcc22f61825cb317c8e8f79d603589da3a10b
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agocompile
Harald Fernengel [Fri, 4 Nov 2011 09:11:19 +0000 (10:11 +0100)]
compile

Change-Id: Ie0b7f1e38cdb0c81cd7b9c30738a503578b19302
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoQt Designer: Fix linking of QtQuick1 plugin on Windows.
Friedemann Kleint [Thu, 3 Nov 2011 09:02:44 +0000 (10:02 +0100)]
Qt Designer: Fix linking of QtQuick1 plugin on Windows.

Change-Id: I611aef8f621a4f26cbfdeab725fd4dec03def448
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoQt Designer: Remove QScript extension.
Friedemann Kleint [Fri, 28 Oct 2011 13:29:14 +0000 (15:29 +0200)]
Qt Designer: Remove QScript extension.

Change-Id: I351b1437442b65a96e07de6fa633e06f3953c128
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoDesigner: Fix warnings about assigned/unused variables.
Friedemann Kleint [Thu, 27 Oct 2011 15:21:39 +0000 (17:21 +0200)]
Designer: Fix warnings about assigned/unused variables.

Change-Id: I99196befc6fe5578bc9a1813a9ec21c08c5c3b25
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoRemove "Trolltech" from installation path.
Jason McDonald [Mon, 24 Oct 2011 03:08:37 +0000 (13:08 +1000)]
Remove "Trolltech" from installation path.

Note that this commit makes no attempt to fix the otherwise outdated
test data.

Change-Id: Idce7358175cdbdd7cbbc9d3094ae02efb2a1b768
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Sanity-Review: Jason McDonald <jason.mcdonald@nokia.com>

13 years agoRemove SkipMode parameter from QSKIP.
Jason McDonald [Wed, 19 Oct 2011 04:36:18 +0000 (14:36 +1000)]
Remove SkipMode parameter from QSKIP.

The SkipMode parameter has been removed from the API in qtbase, so it
must be in all calls to QSKIP.

Task-number: QTBUG-21851, QTBUG-21652
Change-Id: I7f4f5627242d942b02eb0e2b34bea7e4bcd08f7c
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
13 years agoFixed compile; QDesktopServices -> QStandardPaths
Rohan McGovern [Mon, 24 Oct 2011 02:51:27 +0000 (12:51 +1000)]
Fixed compile; QDesktopServices -> QStandardPaths

Broken by qtbase dfa24768a3243eda68d91f573050bf23f96da2dd.

Change-Id: Id5940e90ac4a0853a5bda99c9db95bc77d53dfe1
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoQtTools: Remove qqmeegographicssystemhelper library.
Friedemann Kleint [Thu, 20 Oct 2011 07:24:38 +0000 (09:24 +0200)]
QtTools: Remove qqmeegographicssystemhelper library.

Acked-by: Samuel Rødal <samuel.rodal@nokia.com>
Change-Id: Idf32af82727d81137c12d7d158d6fb792a720eb2
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoQtTools: Remove qvfb
Friedemann Kleint [Thu, 20 Oct 2011 07:19:24 +0000 (09:19 +0200)]
QtTools: Remove qvfb

Acked-by: Paul Olav Tvete <paul.tvete@nokia.com>
Change-Id: I407da6c847a1c210bcc8cdf0be8c6109a7bdcd8a
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoQtTools: Various build fixes.
Friedemann Kleint [Thu, 20 Oct 2011 07:18:12 +0000 (09:18 +0200)]
QtTools: Various build fixes.

Change-Id: Ib627113e9dae8b12cf79ef88a29543439eead427
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoQtTools/Assistant: Replace Q_WS_ by Q_OS_ where appropriate.
Friedemann Kleint [Wed, 19 Oct 2011 07:56:38 +0000 (09:56 +0200)]
QtTools/Assistant: Replace Q_WS_ by Q_OS_ where appropriate.

Change-Id: Ifbd9c374a8a7947191528c947ec0f419bcf20081
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
13 years agoQtTools: Various build fixes.
Friedemann Kleint [Wed, 19 Oct 2011 08:10:59 +0000 (10:10 +0200)]
QtTools: Various build fixes.

Change-Id: Idc46165f16208efc2e59fc4b2b3a6eb486a91ff5
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoQtTools/Designer/shared: Replace Q_WS_ by Q_OS_ where appropriate.
Friedemann Kleint [Wed, 19 Oct 2011 07:59:16 +0000 (09:59 +0200)]
QtTools/Designer/shared: Replace Q_WS_ by Q_OS_ where appropriate.

Change-Id: I166d859f8f446fb4bd08ed05aae1e3db0346b263
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoQtTools: Remove symbian branches from .pro-files.
Friedemann Kleint [Wed, 19 Oct 2011 07:08:53 +0000 (09:08 +0200)]
QtTools: Remove symbian branches from .pro-files.

Change-Id: I9b84010a5e0628e348569201503ab6c25a3bbfd5
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoDon't build empty tests.
Jason McDonald [Wed, 12 Oct 2011 07:04:45 +0000 (17:04 +1000)]
Don't build empty tests.

If the help tools aren't part of the Qt build, avoid building the
associated tests instead of building them as empty tests.

Change-Id: I40a74b464f46dfe0835a55321e1f3dade4e5c9f3
Reviewed-on: http://codereview.qt-project.org/6499
Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
13 years agoMake lupdate use QmlDevTools library for parsing QML
Kent Hansen [Thu, 6 Oct 2011 07:10:13 +0000 (09:10 +0200)]
Make lupdate use QmlDevTools library for parsing QML

Gets rid of the dependency on the qtdeclarative sources.

Change-Id: Ifbb00d856416943a3701f7355499667e11ecdf90
Reviewed-on: http://codereview.qt-project.org/6117
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
13 years agotests: eliminated usage of qttest_p4.prf
Rohan McGovern [Thu, 6 Oct 2011 23:50:44 +0000 (09:50 +1000)]
tests: eliminated usage of qttest_p4.prf

qttest_p4.prf was added as a convenience for Qt's own autotests in Qt4.
It enables various crufty undocumented magic, of dubious value.
Stop using it, and explicitly enable the things from it which we want.

Change-Id: Ie775d011e6f63d4d174c2be78cda138d7bbe85ff
Reviewed-on: http://codereview.qt-project.org/6186
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
13 years agoRemove redundant check in WidgetFactory
Kent Hansen [Wed, 5 Oct 2011 11:55:10 +0000 (13:55 +0200)]
Remove redundant check in WidgetFactory

Checking for "QDockWidget" once should be enough.

Change-Id: I9276c4d0c80eb4f18d604c056dd1dd694dbd2f5f
Reviewed-on: http://codereview.qt-project.org/6061
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoDesigner: Compile on Windows.
Friedemann Kleint [Tue, 4 Oct 2011 10:59:13 +0000 (12:59 +0200)]
Designer: Compile on Windows.

Clean up .pro-files, remove fiddling with libraryTarget.

Change-Id: I81e1b7cf6e2bbafec3a36e56f92e44a83886bb31
Reviewed-on: http://codereview.qt-project.org/5978
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoMake "#include <QtUiTools/QUiLoader>" work
Caio Marcelo de Oliveira Filho [Fri, 30 Sep 2011 21:20:12 +0000 (18:20 -0300)]
Make "#include <QtUiTools/QUiLoader>" work

We need to add the base include directory to allow this type of
includes to work. The same approach is taken by all other modules.

Merge-request: 2
Change-Id: I3bdac5fe0096637b42dae49e306761f489fff8ff
Reviewed-on: http://codereview.qt-project.org/5909
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
13 years agoTools: Compile examples.
Friedemann Kleint [Fri, 30 Sep 2011 10:45:31 +0000 (12:45 +0200)]
Tools: Compile examples.

Change-Id: I0ca17a4632c69aa8bf1cd33111dc5fbeb2e62d44
Reviewed-on: http://codereview.qt-project.org/5866
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoDon't crash when running qhelpgenerator.
Lincoln Ramsay [Mon, 26 Sep 2011 07:36:42 +0000 (17:36 +1000)]
Don't crash when running qhelpgenerator.

It's not enough to link to libQtGui, QGuiApplication must also be used.

Change-Id: Ie8ea0e3aa711308052fcbd4e670eef7fc1269403
Reviewed-on: http://codereview.qt-project.org/5516
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
13 years agoFixed compile (Qt::escape -> toHtmlEscaped())
Rohan McGovern [Fri, 30 Sep 2011 05:37:58 +0000 (15:37 +1000)]
Fixed compile (Qt::escape -> toHtmlEscaped())

Fixed compile after source-incompatible qtbase change
b863df7de926448cf0057272c16da04b7cfb11ee .

Change-Id: I400ead7bd2ec80057dba9c4c3163427ffa4b7c4c
Reviewed-on: http://codereview.qt-project.org/5830
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Lincoln Ramsay <lincoln.ramsay@nokia.com>
13 years agoFixed compile (QMimeData header change)
Rohan McGovern [Fri, 30 Sep 2011 05:33:53 +0000 (15:33 +1000)]
Fixed compile (QMimeData header change)

Fixes the breakage caused by e9ccc40c28d11d7d17e6c79a627590f730b7c120
in qtbase.

Change-Id: Id77ca08ad9b207d1a661c9d45f560423bb9d0285
Reviewed-on: http://codereview.qt-project.org/5829
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Lincoln Ramsay <lincoln.ramsay@nokia.com>
13 years agoDesigner, QtUiTools, uic: Add Perl script to generate sources.
Friedemann Kleint [Wed, 28 Sep 2011 10:42:01 +0000 (12:42 +0200)]
Designer, QtUiTools, uic: Add Perl script to generate sources.

Add a script to generate ui4.cpp/ui4.h used in uic, Qt Designer
and QtUiTools from the .ui file schema.

Tested on Linux.

Change-Id: Iace3805f9e58c223fd71c8b8cc6f34ce0a930d38
Reviewed-on: http://codereview.qt-project.org/5711
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoDesigner: Fix compilation with MSVC 2010.
Friedemann Kleint [Wed, 28 Sep 2011 09:27:15 +0000 (11:27 +0200)]
Designer: Fix compilation with MSVC 2010.

Remove overzealous use of QStringLiteral.
Adapt XSLT accordingly.

Change-Id: I281a56feb299eaa0cca7dde25353c9bbd158909d
Reviewed-on: http://codereview.qt-project.org/5700
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoAssistant: Fix compilation with QT_NO_PRINTER (Windows).
Friedemann Kleint [Wed, 28 Sep 2011 08:19:26 +0000 (10:19 +0200)]
Assistant: Fix compilation with QT_NO_PRINTER (Windows).

Change-Id: I145022208ac245c4904dbabd9910985ea43f00bf
Reviewed-on: http://codereview.qt-project.org/5687
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoDesigner: Remove highlighting of Qt3 support slots/signals.
Friedemann Kleint [Wed, 28 Sep 2011 07:46:07 +0000 (09:46 +0200)]
Designer: Remove highlighting of Qt3 support slots/signals.

Leave highlighting infrastructure intact should there be
another version switch causing deprecation of signals and slots.

Change-Id: Ic16c29f480750e85200ba68345a3c6b8dcba6c7c
Reviewed-on: http://codereview.qt-project.org/5682
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoDesigner: Fix string conversion warnings/introduce QStringLiteral.
Friedemann Kleint [Tue, 27 Sep 2011 14:24:07 +0000 (16:24 +0200)]
Designer: Fix string conversion warnings/introduce QStringLiteral.

on this occasion.

Change-Id: Ib80dfdf8aae162b02500293a83e3bc12941f7406
Reviewed-on: http://codereview.qt-project.org/5637
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
13 years agoDon't store the alignment attribute for spacers
Jarek Kobus [Fri, 23 Sep 2011 10:19:02 +0000 (12:19 +0200)]
Don't store the alignment attribute for spacers

And for QLayoutWidget as it is not allowed and will create
a code which doesn't compile

Reviewed-by: con <qtc-committer@nokia.com>
Task-number: QTBUG-21575

(cherry-picked from commit a6f87c60ed135c8f92a0de846dba5734fa7cf6c6)

Change-Id: Ifb0afe488a028565ca1ff4a7e8b2150b4ef1d4c8
Reviewed-on: http://codereview.qt-project.org/5556
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
13 years agoFixed linking against QtUiTools on mac when frameworks are enabled.
Rohan McGovern [Wed, 21 Sep 2011 07:57:53 +0000 (17:57 +1000)]
Fixed linking against QtUiTools on mac when frameworks are enabled.

QtUiTools is always built as a staticlib.  On mac, anyone linking
against it needs to know this, otherwise they will incorrectly attempt
to link with `-framework QtUiTools'.

Change-Id: I231eb17ee9d387cab6ab8534ff3112e35ef82946
Reviewed-on: http://codereview.qt-project.org/5289
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Kalle Lehtonen <kalle.ju.lehtonen@nokia.com>
13 years agoFixed compile of qhelpconverter.
Rohan McGovern [Wed, 21 Sep 2011 06:24:59 +0000 (16:24 +1000)]
Fixed compile of qhelpconverter.

This needs to link against libQtWidgets (e.g., it uses QWizard).

Change-Id: I4164519b205f9797814ea2884a38e5789510c0a3
Reviewed-on: http://codereview.qt-project.org/5285
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
13 years agoFixed compile of QtHelp on mac when frameworks are in use
Rohan McGovern [Tue, 20 Sep 2011 22:26:20 +0000 (08:26 +1000)]
Fixed compile of QtHelp on mac when frameworks are in use

Removed the incorrect assumption that QtCLucene is never a
framework.

Note that this logic still doesn't match exactly what is in qtAddLibrary
or qtAddModule in qt_functions.prf, therefore the build may still
fail in some exotic setups.

Change-Id: If032c0c4ac6031b5bb28033996a8773ecdb077e9
Reviewed-on: http://codereview.qt-project.org/5264
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
13 years agoRemoved qtwebkit from qttools sync.profile
Rohan McGovern [Tue, 20 Sep 2011 05:18:04 +0000 (15:18 +1000)]
Removed qtwebkit from qttools sync.profile

The qt-modularization-base branch of webkit doesn't compile against
post-refactor Qt, and isn't likely to any time soon.

The qtwebkit dependency for qttools is optional, so we'll remove it for
now and test without it until the webkit situation is improved.

Change-Id: I1ed57bd5a91fb7056a3c8daddde33d33a41e72a3
Reviewed-on: http://codereview.qt-project.org/5187
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
13 years agoFixed compile of lupdate.
Rohan McGovern [Mon, 19 Sep 2011 23:53:52 +0000 (09:53 +1000)]
Fixed compile of lupdate.

lupdate wants to use private QtDeclarative symbols.
Either the symbols need to be made public, or lupdate needs to compile
its own copy of the code.

This commit applies the latter approach.

Change-Id: I119c2d044fe2a8953867f7b6e2fc446dee65cce3
Reviewed-on: http://codereview.qt-project.org/5181
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
13 years agoFixed compile; removed reference to nonexistent directory
Rohan McGovern [Mon, 19 Sep 2011 23:55:42 +0000 (09:55 +1000)]
Fixed compile; removed reference to nonexistent directory

`uitools' directory does not exist.

Change-Id: Ib0f3ee78200089da09a9120c455f09fc6dabe8ea
Reviewed-on: http://codereview.qt-project.org/5180
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
13 years agoMerge remote-tracking branch 'origin/refactor' into master
Lars Knoll [Tue, 13 Sep 2011 18:57:01 +0000 (20:57 +0200)]
Merge remote-tracking branch 'origin/refactor' into master

Conflicts:
src/assistant/help/help.pro
src/designer/src/components/formeditor/formwindow.cpp
src/designer/src/components/formeditor/formwindow_dnditem.cpp
src/designer/src/components/formeditor/layout_propertysheet.cpp
src/designer/src/components/formeditor/qdesigner_resource.cpp
src/designer/src/components/lib/lib.pro
src/designer/src/components/signalsloteditor/signalsloteditor.cpp
src/designer/src/components/signalsloteditor/signalsloteditor_tool.cpp
src/designer/src/components/widgetbox/widgetbox_dnditem.cpp
src/designer/src/components/widgetbox/widgetboxtreewidget.cpp
src/designer/src/lib/lib.pro
src/designer/src/lib/shared/qdesigner_formbuilder.cpp
src/designer/src/lib/shared/qdesigner_propertysheet.cpp
src/designer/src/lib/shared/shared.pri
src/designer/src/plugins/qdeclarativeview/qdeclarativeview.pro
src/linguist/lupdate/qdeclarative.cpp
src/linguist/shared/profileevaluator.cpp
src/linguist/shared/qph.cpp
src/linguist/shared/ts.cpp
src/qtconfig/mainwindow.cpp
src/shared/qtgradienteditor/qtcolorline.cpp
src/shared/qtgradienteditor/qtgradientwidget.cpp
sync.profile

Change-Id: I53f0ce4efae4179257cbf3aab87e1af12c3aa4ff

13 years agoGet Linguist to compile again
Lars Knoll [Tue, 13 Sep 2011 14:19:53 +0000 (16:19 +0200)]
Get Linguist to compile again

Change-Id: If65b0e046a277bd2c83c5188285de4e8d14101b8
Reviewed-on: http://codereview.qt-project.org/4832
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
13 years agoGet designer to compile again.
Lars Knoll [Tue, 13 Sep 2011 13:40:42 +0000 (15:40 +0200)]
Get designer to compile again.

And it actually runs! ;-)

Change-Id: I593991e3b5d423189f00d1bd9c51daca6b9e9bd0
Reviewed-on: http://codereview.qt-project.org/4831
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
13 years agoAdd QtUiTools and uilib
Lars Knoll [Tue, 13 Sep 2011 12:43:51 +0000 (14:43 +0200)]
Add QtUiTools and uilib

This code used to live in qtbase. It doesn't belong
there however and since there are no dependencies
in qtbase left that require it move it here.

This significantly simplifies the build system with
regards to the code in uilib.

Change-Id: I41c8687bd071a1c253eb55594986f3e1424bc6cf
Reviewed-on: http://codereview.qt-project.org/4830
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
13 years agoGet assistant to compile against refactor
Lars Knoll [Mon, 12 Sep 2011 20:29:32 +0000 (22:29 +0200)]
Get assistant to compile against refactor

Give the source code a somewhat saner structure while
I'm at it.

Change-Id: I99766405debe231a0562dd623ba1d17f19333656
Reviewed-on: http://codereview.qt-project.org/4829
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
13 years agofix build on windows 7
Oswald Buddenhagen [Fri, 10 Jun 2011 15:20:19 +0000 (17:20 +0200)]
fix build on windows 7

remove pointless epocroot.pri inclusion

(cherry picked from commit 267e7ca0e586eb63c62deac94f8412db962d621d)

Conflicts:
tools/linguist/lrelease/lrelease.pro

Change-Id: I4bdea92b426bee278774a58554152cd2874936d1
Reviewed-on: http://codereview.qt-project.org/4617
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
13 years ago"fix" license headers
Oswald Buddenhagen [Thu, 2 Jun 2011 10:48:59 +0000 (12:48 +0200)]
"fix" license headers

our policy and even more its implementation is mildly braindead ...

(cherry picked from commit 29a0fc05c1c0d31adc3787feb4d79bcc0af930f8)

Change-Id: I2a97a691af9218f035d4771820a9a265f945ad27
Reviewed-on: http://codereview.qt-project.org/4615
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
13 years agoneed no qlibraryinfo any more
Oswald Buddenhagen [Wed, 1 Jun 2011 19:29:44 +0000 (21:29 +0200)]
need no qlibraryinfo any more

we call qmake now

(cherry picked from commit 8f21f8aa75e4a64cdb89dbfd89663bcf5d58ab34)

Conflicts:
tools/linguist/lrelease/lrelease.pro

Change-Id: Iaa772dffd6a47c7ebfa093d5c4e578d3129fd5ac
Reviewed-on: http://codereview.qt-project.org/4614
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
13 years agoremove dead variables
Oswald Buddenhagen [Wed, 1 Jun 2011 19:19:21 +0000 (21:19 +0200)]
remove dead variables

(cherry picked from commit dedc3463b28fd859bc79f04655e7a13c7c2c2042)

Change-Id: If79a7c4027125c53f5301224887aff76700819be
Reviewed-on: http://codereview.qt-project.org/4613
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
13 years agooptimization: avoid creating unnecessary temporaries
Oswald Buddenhagen [Wed, 1 Jun 2011 18:32:32 +0000 (20:32 +0200)]
optimization: avoid creating unnecessary temporaries

erase messages instead of building a new list of non-dropped ones.
modify messages instead of replacing them with modified copies.

(cherry picked from commit a6f009462876a37dc5e6b04a0f0837bc7f00694b)

Change-Id: I1789932a20537feb9dffeb410862ad79531931d0
Reviewed-on: http://codereview.qt-project.org/4612
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
13 years agoadd hash-based indexing to Translator for fast find()
Oswald Buddenhagen [Wed, 1 Jun 2011 18:29:51 +0000 (20:29 +0200)]
add hash-based indexing to Translator for fast find()

(cherry picked from commit 361b7404f569f88e11f45d5d8e2dc61e183f37b6)

Change-Id: I2742dfca41a91264c56454edf07d7d4dd9d05c5f
Reviewed-on: http://codereview.qt-project.org/4611
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
13 years agoremove Translator::translatedMessages()
Oswald Buddenhagen [Wed, 1 Jun 2011 17:43:49 +0000 (19:43 +0200)]
remove Translator::translatedMessages()

it's inefficient to construct a new list. on top of that, the only user
actually checks the message state again.

(cherry picked from commit 8a5d0e6c3d1cf6b269f755a8d54b25b704ba8356)

Change-Id: I54159bc041fa5188affb1d54862f742c1e445628
Reviewed-on: http://codereview.qt-project.org/4610
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>