summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Wrapped the XInput include with an ifdef.Denis Dzyubenko2009-07-161-0/+4
| | | | | | | That should fix compilation on platforms that do not have xinput headers installed. Reviewed-by: Thiago Macieira
* With license it's better.Alexis Menard2009-07-161-0/+41
|
* And again in the examplesThiago Macieira2009-07-163-3/+3
|
* Update the license header in a few more placesThiago Macieira2009-07-164-4/+4
|
* Update the license headers in XML Schema to the new formatThiago Macieira2009-07-16116-116/+116
|
* Add functionality tests for XSync.Thiago Macieira2009-07-163-1/+49
| | | | | | | It was reported to be auto-detected, but wasn't. Apparently, AIX 6's X11 doesn't have this. Reviewed-By: Denis Dzyubenko <denis.dzyubenko@nokia.com>
* typos in German translationFrederik Schwarzer2009-07-161-7/+7
| | | | Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
* Use Unix signal handlers to properly close the test log when a test isRohan McGovern2009-07-154-6/+93
| | | | | | | | | | | | | | | terminated by a signal. The new XML testloggers in Qt 4.6 only output a testlog after the test completes. Therefore, if a test crashes, no testlog will be output at all. This is a functional regression from Qt 4.5 and earlier where the testlog would be output up to the point where the crash occurred. This is a Unix-specific fix for this problem. This change is also useful for hanging tests; if the test is killed with SIGTERM it will output the test log up to the current test before it exits.
* Fix HPUX compilationRobert Griebl2009-07-151-1/+1
| | | | Reviewed-by: TrustMe
* Xml Schema: move license file to the right directoryPeter Hartmann2009-07-151-0/+0
| | | | | | move the license file for the xml.xsd schema file Reviewed-by: TrustMe
* QGraphicsItems not painted after QGraphicsScene::clear().Bjoern Erik Nilsen2009-07-152-0/+35
| | | | | | | The problem was that we didn't regenerate the bsp when adding items after calling QGraphicsScene::clear. Reviewed-by: alexis
* fix warnings with mingwThierry Bastian2009-07-154-2/+6
|
* avoids strict-antialiasing breakage warningsThierry Bastian2009-07-151-1/+3
|
* fix autotest buildThierry Bastian2009-07-151-1/+0
|
* Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtPeter Hartmann2009-07-1540-477/+621
|\
| * Fix warnings for QtNetwork on mingwThierry Bastian2009-07-152-49/+30
| |
| * Fix warnings in mingwThierry Bastian2009-07-152-2/+2
| |
| * fix build on linuxThierry Bastian2009-07-151-11/+1
| |
| * Restore the use of threadsafe-fdcloexec calls on weird Linux toolchains.Thiago Macieira2009-07-151-1/+18
| | | | | | | | Approach suggested by Rohan on 1866485e46039d51ea78a6d672b678aa02f68eef
| * Compile fix.Denis Dzyubenko2009-07-151-0/+1
| | | | | | | | Include the qstylehelper header file since the macro uses it.
| * Added a version information to our executables.Denis Dzyubenko2009-07-154-0/+122
| | | | | | | | | | | | | | | | On Windows, the FileDescription part of the version information is used as a caption for the grouped taskbar button. Task-number: 253065 Reviewed-by: Prasanth Ullattil
| * Support more than 63 handles in QWindowsFileSystemWatcherdt2009-07-153-181/+304
| | | | | | | | | | | | | | | | | | | | | | | | | | We spawn/stop additional threads as needed to watch any number of files/directories. The old logic of using just one handle per watched directory (regardless of how many files we watch in it.) is preserved. In the worst case a thread is started per 63 files to watch. This enabled Qt Creator to watch all .pro and .pri files even while having qt's projects.pro and qtcreator.pro open. Task-number: 185259, 253014 Reviewed-by: denis
| * Fix warnings for mingwThierry Bastian2009-07-1516-195/+92
| | | | | | | | | | did a small refactor and used QStyleHelper::uniqueName in plastique and windows styles
| * fix warnings for mingw in QtCoreThierry Bastian2009-07-155-11/+11
| |
| * Fix license header in new files - make testcase pass.Volker Hilsheimer2009-07-153-9/+9
| |
| * Compile after a72c30020bdadbe0d82e583e17acd25715604f7bBjørn Erik Nilsen2009-07-151-1/+1
| | | | | | | | | | We don't translate the painter anymore (we instead set the brush origin), so we don't have to (and shouldn't) translate the rects here.
| * Make Graphics View auto-tests less dependant on WS.Bjørn Erik Nilsen2009-07-152-16/+29
| | | | | | | | | | | | | | Several auto-tests failed on the Mac because the view get two paint events on the first show. This is a bug in QWidget, but shouldn't make graphics view auto-tests fail. Also, there's no difference between update() and repaint() on the Mac.
| * Doc - fixed a typoKavindra Devi Palaraja2009-07-151-1/+1
| | | | | | | | | | | | Reviewed-By: TrustMe Task: 257919
* | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtPeter Hartmann2009-07-151317-10751/+33198
|\ \ | |/
| * Fix Solaris build failure with the new qt_safe_() socket functions.Robert Griebl2009-07-151-1/+2
| | | | | | | | Reviewed-by: Thiago
| * repair the mouse cursor on Windows CEJoerg Bornemann2009-07-151-0/+4
| | | | | | | | | | | | | | | | The LoadImage function doesn't seem to work for loading cursors from resources. Also, it isn't marked as deprecated for Windows CE like on desktop Windows. So we'll just use it again. Reviewed-by: thartman
| * Bad drawing of styled viewports within QAbstractScrollAreaOlivier Goffart2009-07-156-52/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch includes lots of refactoring, but the real problem was that in QWidgetPrivate::paintBackground we call drawPrimitive(PE_Widget) with a potentialy translated painter, but the opt.rect is not translated. When having a scroll area the calling function used to translated the painter and then pass the offset around to rectify. but drawPrimitive cannot rectify it. The solution is not to translate the painter but use other way to rectify the brush Task-number: 257517 Reviewed-by: bnilsen
| * Fix painting of the background of QAbstractItemView, QTextEdit and coOlivier Goffart2009-07-152-1/+198
| | | | | | | | when only setting a border with the stylesheet
| * Rebuilt the configure.exeThierry Bastian2009-07-151-0/+0
| |
| * Fix compilation of webkit with mingwThierry Bastian2009-07-151-3/+0
| |
| * remove lots of warnings with mingwThierry Bastian2009-07-151-1/+1
| |
| * Fixes more sql autotestsBill King2009-07-151-10/+12
| |
| * Fixes sql autotests.Bill King2009-07-151-4/+1
| | | | | | | | | | Now that the precisionPolicy stuff is fixed, sql server seems to be behaving correctly (with double values, but still not with string values).
| * Fixed recompile of tests/auto/selftests/exception.Rohan McGovern2009-07-156-9/+9
| | | | | | | | | | | | Turns out making a binary named `exception' is quite a bad idea... when some code does `#include <exception>', guess which file gets picked up :-)
| * Fixed selftest failure.Rohan McGovern2009-07-151-2/+2
| | | | | | | | Update maxwarnings for testlib string change.
| * Improve error message from configure.exe when trying to compile the Windows ↵David Faure2009-07-141-2/+8
| | | | | | | | | | | | | | | | | | | | phonon backend: - mention the DirectShow SDK, not the DirectX SDK (which doesn't include DirectShow anymore) - mention which exact files were not found, rather than just "all required files couldn't be found" Merge-request: 881 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
| * Forgot to include qnet_unix_p.h for the qt_safe_() functionsRobert Griebl2009-07-141-0/+1
| | | | | | | | Reviewed-By: TrustMe
| * QNetworkReply: Add isFinished() method documentation improvementMarkus Goetz2009-07-141-0/+4
| |
| * support context menu for system tray icons on Windows CEJoerg Bornemann2009-07-141-2/+11
| | | | | | | | | | | | | | | | This is Windows CE only. For Windows mobile we don't support context menus for system tray icons. Task-number: 250528 Reviewed-by: thartman
| * Socket function cleanup: replacing direct POSIX calls with qt_safe_().Robert Griebl2009-07-145-44/+42
| | | | | | | | Reviewed-By: Thiago
| * outdated comment in qfsfileengine_win.cpp removedJoerg Bornemann2009-07-141-2/+0
| | | | | | | | Reviewed-by: TrustMe
| * large file support for Windows CEJoerg Bornemann2009-07-141-16/+19
| | | | | | | | | | | | | | | | | | Seeking in files above 0x80000000 failed on Windows CE. SetFilePointer was used in the 32 bit version. That means, seeking only worked for positions <= LONG_MAX (which is 0x80000000 - 1). Task-number: 255242 Reviewed-by: mauricek
| * micro optimization in qfsfileengine_win.cppJoerg Bornemann2009-07-141-4/+2
| | | | | | | | | | | | | | Use the LARGE_INTEGER union properly and don't do unnessecary bit shifting. Reviewed-by: mauricek
| * Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtMarius Bugge Monsen2009-07-1410-15/+88
| |\
| | * QNetworkReply: Add isFinished() methodMarkus Goetz2009-07-146-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | The isFinished() method will return true if the reply has successfully finished or has been aborted. Task-number: 257349 Reviewed-by: Thiago Macieira