summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Revert "make qm target work when the freshly built Qt is not in the library"Jason McDonald2009-06-161-11/+2
| | | | This reverts commit bcbb66df3d517cfb0bac63b041f666ee9db0e42d.
* Prevented QCompleter popup from appearing briefly on Windows.jasplin2009-06-161-1/+5
| | | | | | | | | | | | | It turns out that the fix 7bf4512659113f8cc78e72f1c84158ce4f70a526 caused the QCompleter popup from appearing for a split second on Windows. This is because the popup is shown as a toplevel window on this platform. On other platforms than Mac and Windows it doesn't seem to matter, but be on the safe side, the fix is modified to apply for Mac only. Reviewed-by: Daniel Molkentin Task-number: 255374 (cherry picked from commit 6e022c5c21a44a25b1579f03498ecaeba6da9024)
* Fixed problems with the event handling in QCompleter on Mac.jasplin2009-06-161-1/+1
| | | | | | | | | | | On Mac, a new completer popup must initially have its show() method called rather than its hide() method. Otherwise the event handling done by the completer results in a bad state. On other platforms it doesn't matter. Reviewed-by: Richard Moe Gustavsen Task-number: 255374 (cherry picked from commit 7bf4512659113f8cc78e72f1c84158ce4f70a526)
* QFile: Doc was pointing to deprecated QIODevice::isSequentialAccess()Markus Goetz2009-06-161-1/+1
| | | | | | | Changed to QIODevice::isSequential() Reviewed-by: TrustMe (cherry picked from commit 6e4fbda4938ba17a398d15ec0697c8dbb9b9fc40)
* New binary for configure.exeMarius Storm-Olsen2009-06-151-0/+0
| | | | | Reviewed-by: trustme (cherry picked from commit dfe63cc0056a6592a4fb4e5c725c4ea0ed10ba20)
* make qm target work when the freshly built Qt is not in the libraryOswald Buddenhagen2009-06-151-2/+11
| | | | | | | | | | search path unlike moc and uic, lrelease is not statically built, so when building without RPATH, we need to ensure that our libraries are found first. Reviewed-by: mariusSO (cherry picked from commit c185a351d7b72812b5f93163ee43edd73784522c)
* Rename nsCursorForQCursor -> qt_mac_nsCursorForQCursor.Morten Sørvig2009-06-154-4/+4
| | | | | Reviewed-by: Richard Moe Gustavsen (cherry picked from commit e4c224f0ef1b57a1389148b78d236349603503a5)
* fix qm buildOswald Buddenhagen2009-06-153-1/+12
| | | | | | | | | | | so "qmake -r && make" worked fine ... but configure does not simply run "qmake -r". also, now we have to build lrelease even when we don't build the other tools. Reviewed-by: Jason McDonald Reviewed-by: mariusSO (cherry picked from commit 98899a4122565090640672d9aae2c37315f186ce)
* properly indent embedded awk codeOswald Buddenhagen2009-06-151-11/+11
| | | | | Reviewed-by: TrustMe (cherry picked from commit b3743d1df735d4b46f45e034818bbfe45bf8d22e)
* BT Revert "Fix the behaviour of sql classes regarding quoted identifiers"Jason McDonald2009-06-1520-1209/+131
| | | | | | | | | | This reverts commit bb7bddc47dd0748b45d22180d9e3c8e5209010b3 due to forward binary compatibility issues in a point release. (cherry picked from commit b8430baeadd62b643ff07a2588c62141146c08fd) Conflicts: tests/auto/qsqldriver/tst_qsqldriver.cpp
* Doc: My review of earlier changes plus some minor adjustments and fixes.David Boddie2009-06-131-116/+116
| | | | | Reviewed-by: Trust Me (cherry picked from commit 1be9e07987388195b8c4ff7d0101cb3e32ee6acc)
* Doc: Work on the 4.5.2 changes file.Geir Vattekar2009-06-131-152/+124
| | | | | Reviewed-by: David Boddie (cherry picked from commit d5c16071ac414e4dd40d8742403b675b2cdefa55)
* Changes for 4.5.2Leonardo Sobral Cunha2009-06-131-0/+7
| | | | (cherry picked from commit 304bf2ef0a99882d2d969347f85a330523086fb3)
* QGraphicsItem::setOpacity(0.0) does not trigger an update of child itemsLeonardo Sobral Cunha2009-06-132-2/+51
| | | | | | | | | Forwarding the ignoreOpacity flag to children in QGraphicsItemPrivate::fullUpdateHelper. This is a complementary fix to task 252913, partly fixed in commit 2e3a5ea44... Reviewed-by: bnilsen BT: yes (cherry picked from commit 8d1f218f6b11cff798bcd0b3123a2fe38c4a4142)
* Copy-paste didn't work for application on non-first screen in multiscreen setup.Denis Dzyubenko2009-06-122-8/+14
| | | | | | | | | | | | | We need to subscribe to xfixes selection notify events on all available screens. Also implemented delayed subscription to xfixes events since we don't really need clipboard change notifications unless the application explicitely asked for by (i.e. created a qclipboard object). Task-number: 255609 Reviewed-by: Bradley T. Hughes (cherry picked from commit 8a745d2a1048ba922232530d36c2fd01d4c92159)
* keep CONFIG+=silent working with the new translations.pro fileBradley T. Hughes2009-06-121-1/+1
| | | | (cherry picked from commit d2b1c2d1c9cf5375d7e1cb7e1b08420eb00bada8)
* Doc fix: add a link to focus() and focusWidget() from QWidget::setFocus ↵Denis Dzyubenko2009-06-121-2/+2
| | | | | | | documentation. Reviewed-by: TrustMe (cherry picked from commit 82a32d2e0fb603d5ebe4e0958ff68501b1f1b75b)
* turn qm generation into a build time targetOswald Buddenhagen2009-06-1246-36/+48
| | | | | | | | | | consequently, remove the qm files from the repository this uses some really black magic to convince qmake to do the right thing. this will be fixed properly in a later version. Reviewed-by: mariusSO (cherry picked from commit 5717e44d47bf5f6be59a59844223ce71b094b08e)
* fix "make debug" under windowsOswald Buddenhagen2009-06-121-1/+1
| | | | | | | | | | use relative path for include (like every other subtree does), otherwise $$fromfile() does not find the file, thus the template is unknown and thus the generic "first" target is used instead of "debug", which tries a generic build against non-existing release libs - boom. Reviewed-by: TrustMe (cherry picked from commit dfb61e59f0a1c2113cc01c99c3fd052efa2b6c8e)
* don't let comments weaved into strings confuse usOswald Buddenhagen2009-06-111-1/+3
| | | | | | | Reviewed-by: TrustMe Task-number: 254260 Testcase: 323072@p4 (cherry picked from commit 941a03814a5f8f7be93425f71ee65a4222d16899)
* Spelling in docs.Jarek Kobus2009-06-111-1/+1
| | | | (cherry picked from commit e6652650fe1de6421b48fab076c5e80c0deddbd8)
* QSslSocket: Wrong warning message in startServerEncryptionMarkus Goetz2009-06-111-1/+1
| | | | | Reviewed-by: TrustMe (cherry picked from commit 5c7042862c74dd3a5666bb266eaed922407e9711)
* BT: QtDemo works far to sluggish on macRichard Moe Gustavsen2009-06-111-0/+2
| | | | | | | | | | | | | | Basically we need to revert more of Oliviers change. The reason is that we just cannot run the demo on mac without timer based updates (as opposed to graphics view itself tries to figure out when to update). The reason is that the demo uses QItemAnimations extensivelly, which again uses QTimelines, wich again uses separate timers. And on mac, because of coalesced updated, each item animation will result in an individual redrawing of the scene. Task-number: 255751 Reviewed-by: Olivier (cherry picked from commit 7886888d3e873500dd1ea7d3f450f7d7f87c0ea6)
* BT: Fixes building qtdemo in the installed tree of sources.Thomas Zander2009-06-101-1/+3
| | | | | | | | The QT_BUILD_TREE variable only works in the source or build dir, but fails in the demo which *install* the sources that should be buildable too. Reviewed-by: Marius Storm-Olsen (cherry picked from commit c0becf8cb47312ec14a2b28e2a76a1d87a8e183e)
* Fixed compile of arthur tests when Qt is configured without opengl orRohan McGovern2009-06-105-5/+13
| | | | | qt3support. (cherry picked from commit b2b0ac2f9abf58456e2dad2340c77c6004464a34)
* BT: Fix missing animation in the Qt Demo BrowserJens Bache-Wiig2009-06-101-2/+6
| | | | | | | | | Change 259b65c2f5d736dd7f6d81b6390f54464dd5f183 prevents the animation from running on Windows. This is a partial revert that still preserves most of the performance fixes. Reviewed-by: ogoffart (cherry picked from commit 31f52b2354f5bb5044592ad93cb4e9f7a9d43ae6)
* Fix the qitemdelgate test.Olivier Goffart2009-06-101-14/+14
| | | | | the line edit was deleted when we press enter (cherry picked from commit f4548a337bbc348065e8341df9445bf0fc7bc241)
* BT: Fix the installed browser source tree to compile.Thomas Zander2009-06-101-1/+1
| | | | (cherry picked from commit c93f69f95a8c0a4eb3cd390c11266057b77c78b5)
* BT: Make the spreadsheet demo install its header files so it will compile ↵Thomas Zander2009-06-101-1/+1
| | | | | | after installing (cherry picked from commit c87d03e01a01fa84c7a14e9b330219f2a80f8ffa)
* Bump qt-eclipse version number in docsJarek Kobus2009-06-101-1/+1
| | | | (cherry picked from commit 8de2e639825d1351f794f50e2cccd846aba7b8d2)
* Fixed intermittent failure of tst_selftests.Rohan McGovern2009-06-101-1/+1
| | | | | Allow more variance for the benchlibtickcounter selftest. (cherry picked from commit bbc0850742f4f926876dc55478ff74aaa121846b)
* Fixed crash in tst_qcombobox when Qt is built in debug mode.Rohan McGovern2009-06-101-1/+1
| | | | | | "QTableWidget::setModel() - Changing the model of the QTableWidget is not allowed." (cherry picked from commit ebbfbe432671d899fb08ac8775e6e36d86f1c010)
* Fixed tst_qmake failing to compile when QMAKE_CROSS_COMPILED is defined.Rohan McGovern2009-06-101-1/+2
| | | | (cherry picked from commit d6d586d4b05f416d89fcaf59c863245f1cb7d9ae)
* More entries for the change logJens Bache-Wiig2009-06-091-0/+12
| | | | (cherry picked from commit b9c4f8fec2a009003029dd95b20d0342271c0473)
* Doc - fixed a typoKavindra Devi Palaraja2009-06-091-5/+5
| | | | | Reviewed-By: TrustMe (cherry picked from commit 76bcfd8fcd61164cec8abd04c0056e5aedb6c10b)
* Doc typo fix in QSslSocketMarkus Goetz2009-06-091-1/+1
| | | | | Reviewed-by: TrustMe (cherry picked from commit 6a2202b544e3d7809312f74b0cf0b2b392bd78b7)
* My changes for 4.5.2Jarek Kobus2009-06-091-0/+4
| | | | (cherry picked from commit ec110c41175daae436d49b1e2369f80587ba5b65)
* fix catalan plural rulesOswald Buddenhagen2009-06-073-2/+11
| | | | (cherry picked from commit f1e471b561012f90938766c00aefff417593e71f)
* rename some plural formsOswald Buddenhagen2009-06-071-4/+3
| | | | (cherry picked from commit 3e663dcad5e9fbfd2a5466d464747a1a87f036b3)
* drop traditional czech plural rules in favor of today's slovak-like rulesOswald Buddenhagen2009-06-071-8/+2
| | | | (cherry picked from commit 78b44fdb2b505833a9b60fcd63e1fe8c8a59d9ed)
* fix turkish plural formsOswald Buddenhagen2009-06-071-1/+1
| | | | (cherry picked from commit 4cc2d62669b1638d34b6588bd3b164fb17138596)
* fix tagalog plural formsOswald Buddenhagen2009-06-071-2/+8
| | | | (cherry picked from commit a9472cb582fe155dd21f7bd3189afb64d5b08ab8)
* fix icelandic plural formsOswald Buddenhagen2009-06-071-1/+5
| | | | (cherry picked from commit 70be10968c8f547b464b3150ba582766e679ec7d)
* fix lithuanian plural rulesOswald Buddenhagen2009-06-071-2/+2
| | | | (cherry picked from commit 517ebf6f06db90a46d62c397d8e4c940cd7ac62b)
* open pipes in overlapped mode also on the client sideOswald Buddenhagen2009-06-071-2/+2
| | | | | | | otherwise PeekNamedPipe() may block in threaded environments. Reviewed-by: thiago (cherry picked from commit 4948f4b188c6aa40e628d74d6d6fce747ee535bd)
* Add a comment for the translator so the placeholders are describedAndy Shaw2009-06-071-0/+3
| | | | | Reviewed-by: TrustMe (cherry picked from commit 8411fe233021f8609250b7cf47353e3128521406)
* Fixed typos.Trond Kjernåsen2009-06-071-2/+2
| | | | (cherry picked from commit f2b307342a0effed58436dd199a0d80c5e651755)
* My 4.5.2 changes.Trond Kjernåsen2009-06-071-1/+43
| | | | (cherry picked from commit dabeec5e1d3f43b54a58b2f8667ac552a7c24685)
* Fixed an issue with graphicssystem raster on 8 and 16 bit X servers.Trond Kjernåsen2009-06-071-1/+1
| | | | | | | | | | | We didn't actually check the depth of the target window before calling the qt_x11_drawImage() fu, that will only work with depths >= 24. Task-number: 255311 Reviewed-by: Samuel BT: yes (cherry picked from commit d29da4699a2887cdf0836ff39652524d015431c0)
* Doc - fixed a typoKavindra Devi Palaraja2009-06-071-2/+1
| | | | | Reviewed-By: TrustMe (cherry picked from commit b59d84fe67caedeb8c11d2530ddee2017a376920)