- 02 Jan, 2018 - 1 commit
-
-
Mitch Curtis authored
Change-Id: I8c0a85cacc07ba4bce6f3f2f573bc519e73cc938 Reviewed-by:
Andy Shaw <andy.shaw@qt.io>
-
- 22 Dec, 2017 - 1 commit
-
-
Alexander Volkov authored
They are unused since 97d9648f . Change-Id: I1b041712080d27a99a29e51f6f154601d38e2bf4 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by:
Jarkko Koivikko <jarkko.koivikko@code-q.fi> Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 12 Dec, 2017 - 1 commit
-
-
Oswald Buddenhagen authored
Change-Id: Ie62f79cebad081d089e324ae990d75bd5cc45b73
-
- 23 Nov, 2017 - 1 commit
-
-
Liang Qi authored
Change-Id: I447e57f67b30dbc83104539b451c9650e417e87d
-
- 08 Nov, 2017 - 1 commit
-
-
Jani Heikkinen authored
Task-number: QTBUG-64210 Change-Id: If9a069208d3074736530d4b452138c0370721c43 Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 04 Nov, 2017 - 1 commit
-
-
Jake Petroules authored
...such as VxWorks. Normally, the Qt dependency pulls in pthread, because the qt feature adds the thread feature (which in turn adds pthread and other necessary flags to the compiler and linker command lines), but in this case we don't have Qt so it must be manually added. Use the higher level abstraction instead of the direct -pthread flag, so that the compiler and linker flags used are taken from mkspecs. Task-number: QTBUG-63516 Change-Id: I88876810129078dfe4898314e45379ff87f95b80 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@qt.io>
-
- 06 Oct, 2017 - 1 commit
-
-
Oswald Buddenhagen authored
Change-Id: I3f7a3f65f29345a43cac28ce3d449af309ea5089
-
- 25 Sep, 2017 - 2 commits
-
-
Oswald Buddenhagen authored
Change-Id: I9ae9d6c248cc02aa1bf00c33b3d58d91948daddf
-
Zhang Xingtao authored
Change-Id: I7e7678004a1f07dab895f375a5a01bdce4d744c2 Reviewed-by:
Liang Qi <liang.qi@qt.io>
-
- 22 Sep, 2017 - 1 commit
-
-
Jani Heikkinen authored
Task-number: QTBUG-62767 Change-Id: I617e68ece14c178012010b765663dd59ccb50996 Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 15 Sep, 2017 - 1 commit
-
-
Mitch Curtis authored
The ternary expressions were the wrong way around. This patch also makes the disabled EnterKey text more visible, as it was very hard to see before. Change-Id: I73b61ac7076e4c132c78e2c40be294e45bef3cc9 Reviewed-by:
Venugopal Shivashankar <Venugopal.Shivashankar@qt.io> Reviewed-by:
Jarkko Koivikko <jarkko.koivikko@code-q.fi> Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 12 Sep, 2017 - 1 commit
-
-
Mitch Curtis authored
Calling InputEngine::setInputMethod(null) did not clear the pointer value stored in SelectionListModelPrivate. Also, in case the input method is destroyed without setting it null, prevent use of dangling pointer in selection list model by using QPointer. Task-number: QTBUG-61308 Change-Id: If340d99a63489c54414497c61cd482e06a21c5ee Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 15 Aug, 2017 - 1 commit
-
-
Andy Shaw authored
This fixes the original commit - 9db37be7 Change-Id: I6679ce07a4890f7d8d332f0400a5bbd2cc6bb577 Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 02 Aug, 2017 - 1 commit
-
-
Jarkko Koivikko authored
The crash occurs in Hiragana input mode only when pressing the space after entering a smiley. Fix it by handling the smiley as individual characters instead of text when submitting to OpenWNN engine. [ChangeLog][OpenWNN] Fixed crash when pressing the space after entering a smiley. Task-number: QTBUG-62143 Change-Id: Ic5f271bdfe05491ffd6147f1fc8eb9f54ef4e032 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 27 Jul, 2017 - 1 commit
-
-
Mitch Curtis authored
This has been handled automatically for a while now. We'll leave the section about the deployment location though, as that could be useful. Task-number: QTBUG-62099 Change-Id: Idc13302dbeb4ede632338747c492e5503ce2395c Reviewed-by:
Kati Kankaanpaa <kati.kankaanpaa@qt.io> Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 26 Jul, 2017 - 1 commit
-
-
Friedemann Kleint authored
If a plugin is used, the qmldir file must be located next to the plugin in the file system. By it being included in the .qrc file it was deployed twice, once in the file system and once in the virtual resource file system. A recent change in declarative ended up doing an implicit import on that virtual directory and thus uncovered this bug of the qmldir file being present in a (virtual) directory where it doesn't belong. qml_module.prf takes care of deploying the qmldir. Task-number: QTBUG-62138 Change-Id: I7693b5656cb593454e2d777fe179e6f889d6dbdf Reviewed-by:
Simon Hausmann <simon.hausmann@qt.io>
-
- 25 Jul, 2017 - 1 commit
-
-
Jarkko Koivikko authored
QStringLiteral is broken in MSVC2015 onwards when used with \uXXXX encoded character literals. This was the reason Japanese tests were failing - the OpenWNN engine was actually broken and producing garbage. Not only this change eliminates QStringLiteral from openwnn, but also reduces runtime memory usage by replacing QMap<QString, QString>. The new solution is based on simple binary lookup table WnnLookupTable. WnnLookupTable data was converted from existing QMap structures using WnnLookupTable::create() method, which was left there for future reference. This change also removes the unnecessary QObjectPrivate definitions from Romkan* classes. [ChangeLog][OpenWNN] Fixed and optimized OpenWNN engine (as a workaround for QStringLiteral breakage) Task-number: QTBUG-62133 Change-Id: I50c9e2f5c363e1314f47d7023685da543ec9a7eb Reviewed-by:
hjk <hjk@qt.io> Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit 0bf1c6ad)
-
- 21 Jul, 2017 - 1 commit
-
-
Marc Mutz authored
Reduces allocations. This is the result of running the (experimental) clang-tidy check qt-modernize-qsharedpointer-create Discarded changes: none. Change-Id: I9ef1ccd46315f1bb8f3cc30a652f17c18b46232c Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 30 Jun, 2017 - 2 commits
-
-
Liang Qi authored
Change-Id: Id387390ae533debf39b008b456a94f4c427993b4
-
Oswald Buddenhagen authored
Change-Id: I72da022872d814fe1e21d111b77748d7e98fbb7a
-
- 23 Jun, 2017 - 1 commit
-
-
Jani Heikkinen authored
Change-Id: Id3bdf678c9aff44fc636d1f1880e57e740a8ef8e Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 22 Jun, 2017 - 1 commit
-
-
Mitch Curtis authored
Some handwriting.qml files were using the old commercial license headers. Also updated the copyright year. Change-Id: Id603976bc6343797fd993e8041065d6afb2dc7a9 Reviewed-by:
Konstantin Tokarev <annulen@yandex.ru> Reviewed-by:
Jarkko Koivikko <jarkko.koivikko@code-q.fi> Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 12 Jun, 2017 - 1 commit
-
-
Maurice Kalinowski authored
UWP is not a supported target platform for virtual keyboard. Change-Id: I00ccbfeb4f77e07b1d46dd5d54f50b55e3b778d8 Reviewed-by:
Oliver Wolff <oliver.wolff@qt.io> Reviewed-by:
Gordan Markus <gordan.markus@pelagicore.com>
-
- 31 May, 2017 - 1 commit
-
-
Liang Qi authored
Change-Id: Ied53fe56a6b9c9a71b5bbe9ed85270fb89ad8c5c
-
- 10 May, 2017 - 1 commit
-
-
Oswald Buddenhagen authored
Change-Id: Ica0fcdd8f2ee9c467f7119a8fa249fe2c60e5a9d
-
- 09 May, 2017 - 4 commits
-
-
Gordan Markuš authored
Use multi-arg overload instead of chained QString::arg() calls. Change-Id: Idd279664e66655dfbc4f3f31bbf705ee6e387724 Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
Gordan Markuš authored
Change-Id: I705129c56e968a72cf3d4de5b37b092cee93965c Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
Gordan Markuš authored
Use emit instead of calling a signal as a regular function. Change-Id: Id27031447ebd65c463f4bab5d074f2dbd7b6284a Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
Mitch Curtis authored
Change-Id: I12400fab4eaef25fcfff5245d61c184958df506e Reviewed-by:
Jarkko Koivikko <jarkko.koivikko@code-q.fi> Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 06 May, 2017 - 1 commit
-
-
Antti Kokko authored
Listing important changes and bug-fixes. Change-Id: Ib9ac4fff8076ed2ccaea696441a81eaa511568b2 Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 05 May, 2017 - 3 commits
-
-
Ulf Hermann authored
We might run an event loop after destroying qApp and additional events may be generated from that. Therefore we should not access qApp unchecked from event handlers. In most places we did already check qApp for null. Now we do it everywhere. Task-number: QTBUG-60000 Change-Id: Id72bbf133989e4f8127d85ee63cba64f915d3649 Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
Sami Nurmenniemi authored
Currently boot2qt is tested with QEMU and some tests fail. Disabling them for now to make it possible to enable qt5 tests for Coin. Task-number: QTBUG-60266 Change-Id: I1c520d276bcb606d8d9fa5c7055688defb763867 Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
Julian Strobl authored
Without this patch the module is not bundled in static builds correctly causing 'module "<QtModule>" is not installed' errors in during runtime. As reference: this happens, because 'QQmlMetaType::isAnyModule(importUri)' at 'qtdeclarative/src/qml/qml/qqmltypeloader.cpp:1422:' returns 'false', which indicates that the module was not registered. Task-number: QTBUG-59559 Change-Id: I2856ceaf8148ccbe2c930ec5fdd878c084107ea3 Reviewed-by:
J-P Nurmi <jpnurmi@qt.io> Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by:
Andy Shaw <andy.shaw@qt.io>
-
- 04 May, 2017 - 1 commit
-
-
Andy Shaw authored
This fixes a problem reported by Intel Inspector 2016 which indicated that multiple threads could access the abort variable at the same time. So by making it atomic we avoid any problems in this regard. Task-number: QTBUG-60037 Change-Id: I79d293916f5105e8a36c41d3bc89cd1cb93e5109 Reviewed-by:
Jarkko Koivikko <jarkko.koivikko@code-q.fi> Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 24 Apr, 2017 - 1 commit
-
-
Otto Ryynänen authored
A Native Android build (Boot to Qt Android injection) is defined by having both Q_OS_ANDROID and Q_OS_ANDROID_EMBEDDED flags defined, as well as having Qt config android-embedded. Those flags are set in mkspecs when building for embedded Android. This commit enables the possibility to build native Android builds (i.e. Qt build for Android baselayer only, without JNI) Change-Id: I3f88568f34502c6cfafadbbebd4dd2212a3cd0c4 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 22 Apr, 2017 - 1 commit
-
-
Gordan Markuš authored
warning: LNK4044: unrecognized option '/pthread'; ignored Change-Id: I76425aa3449e6e186f2bae9b0e62ede3fda14420 Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 19 Apr, 2017 - 1 commit
-
-
Gordan Markuš authored
* Add missing Q_OBJECT macros * Add missing Q_DECL_OVERRIDE macro Change-Id: I07fc44cae17a1db03eb0f32b0d6fc4eb85f4b395 Reviewed-by:
Jarkko Koivikko <jarkko.koivikko@code-q.fi> Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-
- 18 Apr, 2017 - 1 commit
-
-
Liang Qi authored
Change-Id: I98bf52c02f0880233ff0d44d4b8ee410c6797579
-
- 06 Apr, 2017 - 2 commits
-
-
Oswald Buddenhagen authored
Change-Id: Icc1696f0c58e0be75c951293a7bfda343e74d94d Reviewed-by:
Joerg Bornemann <joerg.bornemann@qt.io>
-
Nico Vertriest authored
ChangeLanguageKey.qml: Can't link to 'KeyboardStyle.languagePopupListEnabled' KeyboardStyle.qml: Can't link to 'full' Change-Id: I4f30db5cf517d4f6d61a786c356e41984d7fbb0b Reviewed-by:
Mitch Curtis <mitch.curtis@qt.io>
-