summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed usage of the MITSHM extension for 16 bit X servers.Trond Kjernåsen2009-08-191-3/+6
| | | | | | | | The server color layout test was a bit to harsh, since it excluded 16 bit X11 servers with RGB layout. Task-number: 259846 Reviewed-by: Gunnar
* Fixed rounding error in fillRect() in the raster paint engineEskil Abrahamsen Blomfeldt2009-08-181-11/+7
| | | | | | | | | | | Problem introduced by 7661126bc86ed105c02fd9b084ac5a91f12f10c4, which introduced always rounding up when converting the rectangle's coordinates to integers. This would e.g. cause off-by-one errors for the cursor in QTextDocument. Some code paths depended on the ceiling of the coordinates, and these have been reverted. Task-number: 257914 Reviewed-by: Samuel
* don't test tst_QMenu::mouseActivation on Windows mobileJoerg Bornemann2009-08-181-0/+3
| | | | | | | | We integrate QMenu into the native menu system. Thus it doesn't make sense to click at position (5,5) or so. We have the windowsmobile auto test for this. Reviewed-by: thartman
* fix tst_QMainWindow::menuBar for Windows mobileJoerg Bornemann2009-08-181-0/+8
| | | | Reviewed-by: thartman
* Fix regression in clip path calculation for QGraphicsWidget.Alexis Menard2009-08-182-0/+84
| | | | | | | | | | | | | | | | | | This fixes a regression when computing the clip path for a QGraphicsWidget that clip its children to its shape. The clip path cache use the bounding rect which has a null width and height the very first time on a QGraphicsWidget. This might happen as well for any item that have a null width and height (e.g. QGraphicsRectItem before you set the rect). We should do better in mainline by refactoring this clip path cache and calling it in prepareGeometryChange which should be called when you update the shape and the boundingRect of the item. Do we really need also in 4.6/mainline the clip path as it is now? This should be investigate also. The auto-test cover the problem so we can use it after for refactoring the cached clip path. Task-number: 257232 Reviewed-by: andreas Reviewed-by: bnilsen
* QSslSocket: Clear readBuffer and writeBuffer on close()Markus Goetz2009-08-182-0/+38
| | | | | | Fixes https://bugs.webkit.org/show_bug.cgi?id=28016 Reviewed-by: andreas
* Fix a SQLITE whitespace in identifiers issue.Derick Hawcroft2009-08-181-8/+13
| | | | | | Whitespaces in identifiers now past autotests Reviewed-by:Bill King
* Fix qsqltablemodel autotestDerick Hawcroft2009-08-171-6/+7
| | | | | | test was broken Reviewed-by:Bill King
* Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qt into 4.5David Boddie2009-08-172-1/+4
|\
| * skip tst_QScriptEngineDebugger::multithreadedDebugging on Windows CEJoerg Bornemann2009-08-171-0/+3
| | | | | | | | | | | | We run out of memory on the test system in this test. Reviewed-by: mauricek
| * fix WA_DontShowOnScreen bug on Windows CEJoerg Bornemann2009-08-171-1/+1
| | | | | | | | | | | | | | We must not retrieve the initial window geometry for WA_DontShowOnScreen widgets with GetClientRect. Reviewed-by: thartman
* | Doc: Fixed the number of commercial editions.David Boddie2009-08-171-2/+1
|/ | | | Reviewed-by: Trust Me
* new screenshot for windowsmobile autotestJoerg Bornemann2009-08-171-0/+0
| | | | | | | Nowadays every Windows mobile application has a menu (for correct soft key support). That's why we need a new screen shot. Reviewed-by: thartman
* fix warning in windowsmobile autotestJoerg Bornemann2009-08-171-2/+0
|
* run tst_windowsmobile only on WM5Joerg Bornemann2009-08-171-4/+8
| | | | | | The screenshots in the QRC were taken on the WM5 emulator. Reviewed-by: thartman
* make tst_windowsmobile work in shadow buildsJoerg Bornemann2009-08-171-1/+1
| | | | Reviewed-by: thartman
* remove dead codeOswald Buddenhagen2009-08-141-7/+0
|
* remove withdrawn attributes (and fix syntax)Oswald Buddenhagen2009-08-141-9/+0
|
* Document QAction::MenuRole not working on submenus.Norwegian Rock Cat2009-08-141-0/+5
| | | | | | | We could do it or we couldn't. It's simply a judgement call and I think the comments in the task are a good argument for NOT doing it. Task-number: 227875
* Fix the painting of QComboBox on Mac when the rect is not at the originBenjamin Poulain2009-08-142-42/+104
| | | | | | | | | | | | The style was assuming that the combo box is painted at (0,0). This is not the case when the painting is done in the delegate of an item view. The offset of the rect is now taken into account to paint the style. HIRect has been replaced by QRect when it make sense. Task-number: 00026815 Reviewed-by: Richard Moe Gustavsen
* On Mac, hitTestComplexControl() return an incorrect value for comboboxBenjamin Poulain2009-08-141-2/+0
| | | | | | | | The function hitTestComplexControl() of the mac style returned SC_ComboBoxArrow when the point is not over an element of the widget. Task-number: 252857 Reviewed-by: Richard Moe Gustavsen
* Fix crash/assert on Mac when painting "small" QPushButtons.Morten Sorvig2009-08-131-0/+7
| | | | | | | | | A QPushButton with a height if (say) three pixels would cause HIThemeGetButtonContentBounds ot return a rect with dimentions {int_min, int_min, 0, 0}. Detect that case and return the button rect instead. Reviewed-by: Trust Me
* Fix Menu icons are too large on CocoaDean Dettman2009-08-131-2/+2
| | | | | | | | The magic number 22 was based on windows sized icons, a size of 16 should be correct for mac Task-number: 259289 Reviewed-by: NRC
* Wrapped the XInput include with an ifdef.Denis Dzyubenko2009-08-121-0/+4
| | | | | | | | That should fix compilation on platforms that do not have xinput headers installed. Reviewed-by: Thiago Macieira (cherry picked from commit 0a13188468997d6c3253db5b29f05a119945f131)
* don't test dbus stuff where no dbus isJoerg Bornemann2009-08-121-3/+3
| | | | Reviewed-by: Leo
* tst_qurl fixed after the great URL replacement spreeJoerg Bornemann2009-08-121-15/+15
| | | | | Reviewed-By: mauricek Reviewed-By: thartman
* fix tst_QWidget::showAndMoveChild for Windows mobileJoerg Bornemann2009-08-121-0/+1
| | | | | | | | This test created a widget at position (0,0) and grabbed the screen. That's a bad idea on Windows mobile because the upper task bar will cover the widget. Reviewed-by: thartman
* fix tst_QWidget::inputFocus_task257832 on WindowsJoerg Bornemann2009-08-121-0/+1
| | | | | | | | The widget must be created before calling QInputContext::setFocusWidget. Otherwise we run into an assertion. Yes, this only occurs in debug configuration but its still annoying... Reviewed-by: thartman
* indentation fixed in tst_QWidget::inputFocus_task257832Joerg Bornemann2009-08-121-10/+10
| | | | Reviewed-by: TrustMe
* respect QAbstractSpinBox::NoButtons in windowsce / windowsmobile stylesJoerg Bornemann2009-08-122-1/+9
| | | | | | | Code is adapted from QCommonStyle which handles this case for other styles. Reviewed-by: thartman
* fix QTextFormat::doubleProperty where qreal is floatJoerg Bornemann2009-08-121-3/+4
| | | | | | | | This function was too strict. It returned 0 if the property wasn't of type QVariant::Double. Now it tests for QMetaType::Float too. Reviewed-by: kh1 Reviewed-by: mauricek
* fix decoration of DontShowOnScreen widgets on Windows CEJoerg Bornemann2009-08-121-1/+1
| | | | | | | | Widgets with the WA_DontShowOnScreen attribute must not have a window decoration. Autotest: tst_QWidget::initialPosForDontShowOnScreenWidgets Reviewed-by: thartman
* Test naming convention fixes.Rohan McGovern2009-08-129-8/+8
| | | | | Make sure the testcase and directory name are the same (excluding `tst_').
* Update embedded copyright headers.Jason McDonald2009-08-124-30/+84
| | | | Reviewed-by: Trust Me
* Revert "Frame property for QDateTimeEdit can be set independently of"Matthew Cattell2009-08-111-1/+0
| | | | | | This reverts commit 6844dea0cb583a86bc72e7f008720ab76deef040. added to wrong branch. should be in 4.6 but this was added to 4.5
* Frame property for QDateTimeEdit can be set independently ofMatthew Cattell2009-08-111-0/+1
| | | | | | | | | | | calendar popup A frame was always drawn around the QDateTimeEdit editor if a popup calendar had been set. QStyleOptionsComboBox options are being set in paintEvent and initialised from the properties of QStyleOptionsSpinBox but were missing the frame bool property. Now, if the user sets a frame on the QDateTimeEdit, this property will be consistent with setFrame() property of the QDateTimeEdit widget.
* Phonon: improve locking to make it safer to load a sourceThierry Bastian2009-08-112-17/+25
| | | | Task-number: 259482
* Update URL for Qt FTP site.Jason McDonald2009-08-1111-38/+38
| | | | Reviewed-by: Trust Me
* Update URL for Qt Labs.Jason McDonald2009-08-113-6/+6
| | | | Reviewed-by: Trust Me
* Update URL for mailing list server.Jason McDonald2009-08-114-4/+4
| | | | Reviewed-by: Trust Me
* Update URL for Qt web site.Jason McDonald2009-08-11101-171/+171
| | | | Reviewed-by: Trust Me
* Update URL of online documentation.Jason McDonald2009-08-1158-100/+100
| | | | Reviewed-by: Trust Me
* Update old email address.Jason McDonald2009-08-11321-568/+568
| | | | Reviewed-by: Trust Me
* Eliminate some mentions of Trolltech.Jason McDonald2009-08-1182-218/+229
| | | | Reviewed-by: Trust Me
* Qt's domain name is now qt.nokia.com.Jason McDonald2009-08-11108-282/+279
| | | | Reviewed-by: Trust Me
* Update license headers.Jason McDonald2009-08-117115-7215/+7215
| | | | Reviewed-by: Trust Me
* Fixes formatting of date strings in psql driverBill King2009-08-101-1/+1
| | | | | After the coverity fix, the proper code path executed, which failed to enquote the date field properly, so this fix fixes that issue.
* Missing break when formatting from a time valueBill King2009-08-101-0/+1
| | | | Found by coverity.
* Doc: Our webdomain has changed.Volker Hilsheimer2009-08-1013-51/+51
|
* Doc: Fix a typoBenjamin Poulain2009-08-101-1/+1
| | | | Genarated->generated