- 22 May, 2013 - 5 commits
-
-
Janne Anttila authored
The actual code using printer related classes is already wrapped with QT_NO_PRINTER macros, but the include statements were not. The reason why include statement probably were not wrapped with QT_NO_PRINTER is that in Qt4 all headers were synchronized to include directory. Now with Qt5 modularization headers for modules which are disabled are not anymore synchronized to include directory so they need to be wrapped with same ifdefs. Change-Id: I0efd1342cd18860b5fed63b248812e9dced8f2b3 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
kh1 authored
Task-number: QTBUG-31107 Change-Id: I517974a937baaa0371357bb7791d86b26f853049 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
Kai Koehne authored
Change-Id: Ib946a2eb49bc7723dc44257581661a3b2b86956e Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
Kai Koehne authored
Change-Id: Ibe91cb9573ec5ef9ca2cc0a7c36be33b0dec681f Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
Kai Koehne authored
Change-Id: I88bef60bb272319229a92481deec4ac9de9a0547 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
- 21 May, 2013 - 12 commits
-
-
Friedemann Kleint authored
Change-Id: I59a14c7f2a2c770b4b67a2af5c4d5542519f0d63 Reviewed-by:
Jerome Pasion <jerome.pasion@digia.com>
-
Oswald Buddenhagen authored
mac mkspecs are really noisy without it now, which makes the tests fail. Change-Id: I6b4900c51d0b8aedd9309482a30055e48c3b9f69 Reviewed-by:
Tor Arne Vestbø <tor.arne.vestbo@digia.com> Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
Oswald Buddenhagen authored
instead of having them "not implemented" (and consequently getting errors), just let requires(), system(), mkpath(), write_file(), touch() and cache() do nothing. this is likely to cause followup failures which are harder to detect, but the amount of scary noise we are producing now is not really acceptable. furthermore, in qtcreator these failures actually terminate the "precise" evaluation, which breaks Run Configurations. Task-number: QTBUG-28159 Task-number: QTCREATORBUG-8550 (in different repo) Change-Id: I1bdeb759e895e4200f09332dadf8a6cef348182f Reviewed-by:
Daniel Teske <daniel.teske@digia.com> Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
Oswald Buddenhagen authored
in the case of sprintf it's surprising, in the case of join it's anti-thetical. Change-Id: I4eb7e56d31ac6ed68adf852f1a19b33554d38eb4 Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com> Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com> (cherry picked from qtbase/ae94bf2b7a6373def9239ae5f54b143e1f6ffe09)
-
Oswald Buddenhagen authored
any of the directories may be the root, which would lead to double slashes in the constructed filenames. Change-Id: I053e167a19b795b40e780fc29db356c7f24d286a Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com> (cherry picked from qtbase/97be79012cd39d1d0e7748d5c500d86c3becc258)
-
Oswald Buddenhagen authored
don't count parentheses, don't nest quotes, don't create empty elements. the backslash still escapes only quotes (and itself) - $$list() (one of the main users of this function) is commonly used with (windows) path lists, so letting it escape anything would make a royal mess. Change-Id: I29252fbe14fd6d28217450ec41cf8acfb2e30681 Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com> Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com> (cherry picked from qtbase/6c22b9b3e86d1617665f7b81b105c032f43c6d72) (cherry picked from qtbase/a5c2ab47867a558d6f8f62126fb8e4f2777cfe06)
-
Oswald Buddenhagen authored
this allows skipping an entire feature file if a condition is not fulfilled, without putting the whole body inside a conditional. Change-Id: I84fe9c94dda58c794fb52c3f163b40563b0db30a Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com> Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com> (cherry picked from qtbase/525eb337670f61078383c20ad9be274dcf2d0928)
-
Oswald Buddenhagen authored
we have proper fallback paths further down the line. Change-Id: I3648cc985d21bbec4c2c24e179830db4467af210 Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com> (cherry picked from qtbase/0dedf8c3403923b963c51eb65d9cbe838d5ba0d4)
-
Tor Arne Vestbø authored
Instead of after parsing the makespecs, were we assumed QMAKE_PLATFORM had been set by the makespec and did an explicit update. Allows loading platform specific features from within a makespec after updating QMAKE_PLATFORM. Change-Id: I0eb3b7fb88ce48b00a384850c5d87223c06234d7 Reviewed-by:
Tor Arne Vestbø <tor.arne.vestbo@digia.com> (cherry picked from qtbase/4dd29248cd43ff730f7432b51a443b72fad3523d) Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
Oswald Buddenhagen authored
$$(FOO) would automatically split the contents of the environment variable at whitespace (and interpret quoting inside it). the way to prevent the splitting (but not the quote interpretation) would be using "$$(FOO)". this behavior is entirely unexpected and thus an incredibly effective source of quoting problems - according to a grep over the whole qt sources, there isn't a single case where things were done right. in qt creator, well over half the cases are wrong. also, the "feature" seems entirely pointless: nobody uses spaces as separators in environment variables. consequently, simply remove it, even in a patch release. i'm postulating that nobody will complain. Change-Id: I9ed3df1b0d1ef602acd78ceb118611d294561da6 Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com> (cherry picked from qtbase/566d28316dd73bfe4a8ea34839989ee9df7e3895)
-
Oswald Buddenhagen authored
it's a pretty braindead thing to implement control flow statements as (built-in) functions. as a "side effect", this fixes return() value handling for lists. (cherry picked from qtcreator/f53ed6c4b3feca59a94d4f0de8b1a7411122e30e) (cherry picked from qtcreator/f529e22ec38fb9a656d74394e484d2453cf42c69) Change-Id: I59c8efa0e4d65329327115f7f8ed20719e7f7546 Reviewed-by:
Qt Doc Bot <qt_docbot@qt-project.org> Reviewed-by:
Joerg Bornemann <joerg.bornemann@nokia.com> Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com> (cherry picked from qtbase/8400896cfe3fbef7666329a2920bd0dbdd5890af) Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
Oswald Buddenhagen authored
to reduce collateral damage from parse errors. (cherry picked from qtcreator/00c0d0d5e42d28e03c2846c17d3acbcd8420859d) Change-Id: Ic59700d657069d3b15372509b4bff966057d27a9 Reviewed-by:
Qt Doc Bot <qt_docbot@qt-project.org> Reviewed-by:
Joerg Bornemann <joerg.bornemann@nokia.com> Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com> (cherry picked from qtbase/ae3f95a951334dee001e37c305e4d7bf91c0d1b3) Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
- 07 May, 2013 - 1 commit
-
-
Christian Strømme authored
Android only provide stubs for wcstoll(3) and wctomb(3), to solve this wcstoll(3) is replace by an internal equvialent, and wctomb(3) by wcrtomb(3). Change-Id: Ic30e5a809c2f6ab30b4e52883d3aae3ecc036194 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
- 03 May, 2013 - 6 commits
-
-
Oswald Buddenhagen authored
Change-Id: Ibcc1430831082562a4d67030a0831e7839a38ba6 Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
Oswald Buddenhagen authored
Change-Id: I953ce0215e67ee4dd8fa4fc0db2c1903946e3132 Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
Oswald Buddenhagen authored
Change-Id: I8e8bfd391ef8b243e288094f5a02544efe1b2f49 Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
Oswald Buddenhagen authored
Change-Id: Ie1c6e8e479c8f2e758b03175d9250a71e52ce3ce Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com> Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
Oswald Buddenhagen authored
this subdir is only entered on mac. also, if this scope was actually skipped, the result would be rather unexpected ... Change-Id: Ie46b0bfcac081ff55b737c444d15ff6afaf1507b Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
Oswald Buddenhagen authored
the 'embedded' scope (qws) is dead. Change-Id: I4942d90eac9583787610ed3217145240fa89693f Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com> Reviewed-by:
Paul Olav Tvete <paul.tvete@digia.com>
-
- 22 Apr, 2013 - 4 commits
-
-
Axel Waggershauser authored
Change-Id: I9b5460ed09ed458f86e4ea3001f73e482ef97765 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
Axel Waggershauser authored
Fix the line responsible for generating the trailing whitespace in the qtbase/src/tools/uic/ui4.cpp file. Change-Id: I446ce360c5064dc6a88b7b472790e9672cc6b30a Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
Oswald Buddenhagen authored
the 'embedded' scope (qws) is dead. makeqpf is a graphical host tool to be used in the process of deploying embedded software. as the qt build system does not support such a configuration, the tool simply must be built manually. Change-Id: I6aeafb758e6e55ec228b535ef7354d4c78745e80 Reviewed-by:
Paul Olav Tvete <paul.tvete@digia.com>
-
Paul Olav Tvete authored
Change-Id: I4f4e1273216df9aadc9af789cdcda3127f0ccc3a Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
- 17 Apr, 2013 - 1 commit
-
-
Mitch Curtis authored
It currently loads source files as latin1, which means unicode characters are not supported. 4944ea05 removes -codecfortr and hence the ability to specify an encoding. lupdate will then treat all code as UTF-8, so this patch does that too. Task-number: QTBUG-27238 Change-Id: Iefed45de5b4925fee267834a5ed93457fc45b700 Reviewed-by:
Debao Zhang <hello@debao.me> Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
- 16 Apr, 2013 - 2 commits
-
-
Leena Miettinen authored
This is difficult to maintain and users always get the up-to-date information by executing the help command. Change-Id: I13e9b7d7f89bb60d0b73cbbc721d6a8a05112a31 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
Leena Miettinen authored
Move information from the Release Manager topic and add information about QML sources in the Qt Linguist Manual. Change-Id: I0d2a2ea68a2e7e94895b41436d9f973d8c2cb2aa Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@digia.com>
-
- 15 Apr, 2013 - 1 commit
-
-
Leena Miettinen authored
Add links to topics that describe i18n in detail for C++ and QML. Change-Id: I47b95b040dd9efe4eb8951dedbf94ab8988316e5 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
- 12 Apr, 2013 - 1 commit
-
-
Leena Miettinen authored
Make the topic task-oriented. Move information around and remove redundancy. Check the paths to commands and availability of commands. Make docs reflect some changes in functionality. Remove images of toobar buttons that are no longer referred to in text. Change-Id: I7f9743d35ceebfc0f7097a1af2e12eeb344c8e58 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
- 11 Apr, 2013 - 2 commits
-
-
Leena Miettinen authored
In the Qt Linguist Manual. Change-Id: I4ec995afa821d786535a140730187058665e029c Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
Leena Miettinen authored
To the Qt Linguist Manual. Change-Id: I55b3ccb8fe04b6997c3ce953de6544a193b3548e Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
- 10 Apr, 2013 - 2 commits
-
-
Friedemann Kleint authored
Use Q_PLUGIN_METADATA instead of Q_EXPORT_PLUGIN2 . Task-number: QTBUG-30508 Change-Id: Iedc1e140d3f597e29911a38e5d5548e6ac9981b3 Reviewed-by:
Topi Reiniö <topi.reinio@digia.com> Reviewed-by:
Jerome Pasion <jerome.pasion@digia.com>
-
Leena Miettinen authored
Move the description of the release process from the Developer chapter to the Release Manager chapter. Change-Id: Ia119e57b090d10d23b875120b1394be1c89b8405 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
- 06 Apr, 2013 - 1 commit
-
-
Friedemann Kleint authored
Change-Id: I792f3060c808ef860b31b47b3b00e5ac1991eedd Reviewed-by:
Jarek Kobus <jaroslaw.kobus@digia.com>
-
- 03 Apr, 2013 - 1 commit
-
-
Frederik Gladhorn authored
Conflicts: src/assistant/assistant/assistant.pro Change-Id: I7ca59c8150a591c7e2ba57fd729421b4dba064d0
-
- 27 Mar, 2013 - 1 commit
-
-
Friedemann Kleint authored
Check for existence of sqlite-plugin. Breakage introduced by d73afeea . Change-Id: I2595ed4d80e0804f1c2503cddf94ca15e4922af9 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-