summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix QString::arg: When specifying %L1, the group separator would be added ↵Olivier Goffart2011-06-092-5/+20
| | | | | | | | even if the local specify QLocale::OmitGroupSeparator Task-number: QTBUG-9281 Reviewed-by: Denis (cherry picked from commit 720f4ca0ec3b42a101ac24b2cf74cdc87d29eac9)
* Fixed potential infinite loop in QFileSystemWatcher on Mac.Denis Dzyubenko2011-06-091-2/+3
| | | | | | | | | The patch provided by the customer just jumps to reading the next event fom the kqueue when an unexpected condition happens. Task-number: QTBUG-12533 Reviewed-by: Bradley T. Hughes (cherry picked from commit b7256b1f8c9bb43c5234d24453aaa8b1c079cf06)
* Fix crash when all the items in a QListView are hiddenGabriel de Dietrich2011-06-092-1/+57
| | | | | | | | | | | | | | | | | | | Calling QIconModeViewBase::initDynamicLayout() on the second and successive segments would return QPoint(-1,-1), resulting in a totally empty area rectangle for all the items while in QIconModeViewBase::doDynamicLayout(). This rectangle is used to initialize the BSP tree, and produces an arithmetic exception when empty. Furthermore, a rendering bug was also apparent when displaying the first item of a segment while the last item of the previous segment was hidden. Auto-tests included. Reviewed-by: Olivier Task-number: QTBUG-12308 (cherry picked from commit 3c7e7992461b1fef37ada68244f1b5b891015bda)
* Fixed QVideoSurfaceFormat::isValid()Dmytro Poplavskiy2011-06-092-3/+26
| | | | | | | | Trivial fix, valid formats have pixel format != Invalid, not ==. Task-number: QTBUG-12337 Reviewed-by: Andrew den Exter (cherry picked from commit 51cf737151c1c446a9ce77832774202b6bdb4ba2)
* Fix an Assert in QTextTablePierre Rossi2011-06-092-4/+79
| | | | | | | | | | The problem was caused by the fragment id being inserted in front of a cell spanning over several rows instead of the next logical cell (or fragment_end) in the cells structure. Task-number: QTBUG-11282 Reviewed-by: Simon Hausmann (cherry picked from commit d3a6f124dde7732311ad9312ebf41997712fc6bb)
* Fix a crash when recursing into QSharedPointer from QSharedPointer::clear()Thiago Macieira2011-06-092-14/+73
| | | | | | | | | | | | | | We used to delete the tracked object before the new tracking was properly set up in QSharedPointer. That means if the tracked object's destructor or deletion function recursed into the QSharedPointer, it would find itself in an inconsistent state. So instead finish the setup and only then call out to user code. That ensures the internal state is always valid. Task-number: QTBUG-11730 Reviewed-by: ossi (cherry picked from commit 943d63e45ad09f75daa7d2f3dcc17bb28fda1766)
* Initalize the nativeDialogInUse variableAndy Shaw2011-06-091-0/+1
| | | | | | | | | | When the variable was not initalized it would randomly show a native font dialog or a non native one if the DontUseNativeDialogs flag was set. Task-number: QTBUG-12042 Reviewed-by: cduclos (cherry picked from commit c48eb6d5d0a299449330dea8a6a59514942c8781)
* Don't try and use QFactoryLoader when relevant features are turned off.Justin McPherson2011-06-091-4/+15
| | | | | | Task-number: QTBUG-11900 Reviewed-by: Andrew den Exter (cherry picked from commit 2de46daf6568c85d976a1e784c0bafbea89adb3a)
* Fixed size hint for combo box on windowsJens Bache-Wiig2011-06-092-25/+4
| | | | | | | | | | | When you use larger fonts or DPI on windows, the combobox can calculate a size hint that results of text eliding on items. This fix removes some duplicate code in Vista style and adds a dpi dependant size hint for XP style. Task-number: QTBUG-7552 Reviewed-by: richard (cherry picked from commit 8577353b2a5155600e672955e7c6a61e9e9519ca)
* Segmentation Fault in QAudioOutputPrivate::freeBlocks() caused by wrongKurt Korbatits2011-06-092-2/+2
| | | | | | | | pointer increment Task-number:QTBUG-11883 Reviewed-by:Andrew den Exter (cherry picked from commit 6d5e561be6f013f7cb5c77e15ee6b7640cad7563)
* Crash while changing the windows flags from a Qt::Drawer window on CocoaPrasanth Ullattil2011-06-091-3/+5
| | | | | | | | | The crash was caused while checking the visibility of the toolbar inside a native cocoa window. There is no toolbar for a drawer window. Task-number: QTBUG-11138 Reviewed-by: Denis (cherry picked from commit 84756e043fa2bd9c83b24abffb280290ad3667cd)
* Fixed a crash in menubar with invisible actionsThierry Bastian2011-06-092-1/+30
| | | | | | | | That would happen because the loop to find the next action when navigating with the keyboard was not good enough. Task-number: QTBUG-11823 (cherry picked from commit 8ea60a39a8c4661db505a6dc1342e524ec2e460c)
* QAudioInput push mode does not workKurt Korbatits2011-06-092-15/+40
| | | | | | Task-number:QTBUG-11755 Reviewed-by:Derick Hawcroft (cherry picked from commit e620e6626454f0ee10655033841baa6e3b2f4990)
* No more enter & leave events after a popup menu is closed on WindowsPrasanth Ullattil2011-06-091-3/+20
| | | | | | | | | | | We use the TrackMouseEvent() to keep track of enter and leave messages. Upon receiving a WM_MOUSELEAVE, the effect of that function call is over, we need to call it again if we need more messages. This was not done when we close a popup because of mouse click outside. Task-number: QTBUG-11582 Reviewed-by: Bradley T. Hughes (cherry picked from commit d806b996beab76cbc43ffa11bc38721fa19c9c81)
* Phonon(qt7); Don't try and display video frames when audio only.Justin McPherson2011-06-091-7/+9
| | | | | Task-number: QTBUG-9068 (cherry picked from commit f02bb3b14ab0257a11cb9cde692f87a046c0308b)
* Audio(osx); Fix period size calculation.Justin McPherson2011-06-091-13/+2
| | | | | | Task-number: QTBUG-8878 Reviewed-by:Dmytro Poplavskiy (cherry picked from commit 76c256bdabcc207a6ed70d5b5b62698495548a25)
* Fix for a leak in the mac style.Denis Dzyubenko2011-06-091-1/+1
| | | | | | Task-number: QTBUG-11550 Reviewed-by: Morten Sørvig (cherry picked from commit e4d59c1bd1ac43b65ed8b14d41ab488b8e3782bf)
* Fixed device context leak in QGLWidget on Windows.Kim Motoyoshi Kalland2011-06-091-0/+3
| | | | | | | | | Commit 392123ef5432643d1047d1e1dd71512ec39d382d introduced the leak. Task-number: QTBUG-11432 Reviewed-by: Trond (cherry picked from commit 38adb59a9e80a23d37ff0820ef62ebd45ab1e4ae)
* Fix for emitting changed signal in QClipboardDenis Dzyubenko2011-06-091-2/+2
| | | | | | | | | | | When the app that owns the selection quits and there is no clipboard manager running we emit the changed signal whenever the timestamp of the event we got is greater than our timestamp. Task-number: QTBUG-8157 Reviewed-by: Thiago Macieira Author: Luboš Luňák (cherry picked from commit 1448e36be786648a7764255c24edddc636315427)
* Typo in qcleanlooksstyle.cppOlivier Goffart2011-06-091-1/+1
| | | | | Task-number: QTBUG-11506 (cherry picked from commit e4fbdd4fde9b8d2acc13268b44caa57405c3db1a)
* Audio (osx); In pull mode emit readyRead() for each period received.Justin McPherson2011-06-091-2/+2
| | | | | | Task-number: QTBUG-10009 Reviewed-by:Dmytro Poplavskiy (cherry picked from commit 4f79cbb2b7923ff7f7cbc77dc6820d12f594311d)
* QWidget::childAt for masked child widgets doesn't work properlyBjørn Erik Nilsen2011-06-093-31/+150
| | | | | | | | | | | | | | | Problem was that we didn't take the children's effective mask into account when checking whether a point was inside or not. This commit is also an optimization since we no longer check the point against the widget's rect twice. Furthermore, unnecessary QRegion operations are completely avoided in the common case. Auto tests included. Task-number: QTBUG-7150 Reviewed-by: paul (cherry picked from commit 7101ae5a0e90d97acf86a444c4d51ca45e7863fe)
* Diacritic input broken, duplicate the base glypha (on Mac OS X carbon)Prasanth Ullattil2011-06-091-2/+11
| | | | | | | | | This was a regression introduced by 8da880e77db04c. The saved key event needs to be cleared if we process a valid raw key event. Task-number: QTBUG-7099 Reviewed-by: Richard Moe Gustavsen (cherry picked from commit e30e3bb524536ef0f6b55272901b24bbbd4dfbd6)
* Fix QTransform::map(const QPainterPath &) not working with paths thatSimon Hausmann2011-06-092-1/+9
| | | | | | | | | | have only one element Replaced the isEmpty() check for the shortcut in map() with elementCount() == 0 Task-number: QTBUG-11264 Reviewed-by: Samuel (cherry picked from commit 90e009e9e273a4fea5166007e4c2b0638c6588cd)
* fix misleading hintOswald Buddenhagen2011-06-091-1/+1
| | | | | | | it is "FOO=bar ./configure", not "./configure FOO=bar". Task-number: QTBUG-11058 (cherry picked from commit bd49bada206f233bbac09ce1333db42d2a8a0485)
* support TARGETs with spacesOswald Buddenhagen2011-06-091-3/+3
| | | | | | | | this is quite a hack, but the quoting is terminally broken anyway, so ... Task-number: QTBUG-10384 (cherry picked from commit 417771c1a5434885e1e7bc1edcd93a36e7a7fe52)
* Styled item view backgrounds in Gtk+Jens Bache-Wiig2011-06-091-15/+41
| | | | | | | | | | | | These were currently never themed but used a fake gradient to mimick ClearLooks. I had to add a workaround for the case where you were using custom QItemDelegates since this could result in styled background on tree branches but flat items. Task-number: QTBUG-11209 Reviewed-by: thorbjorn (cherry picked from commit 29e294aee281b7a4dcdd1277eef0fe1552015536)
* QString: Fix severals bugs when comparing with QStringRefOlivier Goffart2011-06-092-4/+40
| | | | | | | | | | | | | | the internal ucstricmp and ucstrcmp contains different bugs if the strings are not 0-terminated, as it is with QStringRef. - in ucstricmp, even if the pointer are the same, the lenght could be different - we used to deference the 'end' pointer, that would be 0 if the string ends with 0, but we cannot do that in the general case Task-number: QTBUG-10404 Reviewed-by: Denis (cherry picked from commit cd003bfcf9a05967893099e8948ba3d8f281aa7d)
* QSslCertificate: support large serial numbersPeter Hartmann2011-06-093-4/+46
| | | | | | | | | | | We were calling an OpenSSL function that returned a long for the serial number; sometimes serial numbers are too big to fit into a long (up to 20 octets). In that case, do not convert the serial number to decimal, but just output the hexadecimal value. Reviewed-by: Zeno Albisser Task-number: QTBUG-9973 (cherry picked from commit 0f16c7ce8dcd6f4905d14875088c55148e41366a)
* Fixed alpha check for mono images.Kim Motoyoshi Kalland2011-06-091-0/+2
| | | | | | Task-number: QTBUG-9072 Reviewed-by: Trond (cherry picked from commit bcafe4a3dde9986ecfdeea43dc592b6f54134893)
* Fix antialiasing with transformed text in OpenGL2 paint engineEskil Abrahamsen Blomfeldt2011-06-095-4/+13
| | | | | | | | | | | | | | | | | | | | | | | | Since the paint engine now transforms the prerendered glyphs instead of rendering transformed glyphs as paths, we need to turn on texture filtering to avoid antialiasing artifacts. In order to do this, we also need to pad the glyphs in the glyph cache, otherwise you will get artifacts when sampling the area around the glyph's bounding rect (where there might be other glyphs.) This done by adding a glyphPadding() function to the cache which returns the number of pixels to pad between each glyph. Updated: This also fixes a general issue where some combinations of font sizes and transformations will cause the engine to sample neighbouring glyphs, so this has been backported to Qt 4.6.x. Task-number: QTBUG-9706, QTBUG-11028 Reviewed-by: Tom Conflicts: src/gui/painting/qtextureglyphcache.cpp src/opengl/gl2paintengineex/qpaintengineex_opengl2.cpp (cherry picked from commit 21f5bf3a3030a393ba17ce7726b70fe853b5b608)
* Fixed a crash when creating QGtkStyle before QApplicationJens Bache-Wiig2011-06-092-2/+2
| | | | | | Task-number: QTBUG-10758 Reviewed-by: ogoffart (cherry picked from commit bc5e4da28c1ffbc0da1cbfcaa1e6236ff4c2d4e3)
* Dont crash when assigning the same input context twice.Denis Dzyubenko2011-06-092-4/+10
| | | | | | | | | | | | Added a guard check to return if the given input context is the same is we already have. Explicitly mention in the doc that we take ownership of the given input context object. Task-number: QTBUG-10780 Reviewed-by: Thomas Zander (cherry picked from commit a32c96e753c2f5a123e518a92762ec9c9ff3b0b7)
* Fix platform regression: Support QFont::setStretch() on CocoaEskil Abrahamsen Blomfeldt2011-06-092-6/+15
| | | | | | | | | QFont::setStretch() would previously have no effect on Mac OS X/Cocoa. Task-number: QTBUG-10585 Reviewed-by: Eskil Done-by: Andy (cherry picked from commit 8cbf269e14b372ee3174c2706dd0cc4df37eef1a)
* Fix a memory leak from QItemSelectionModel when changing the modelThierry Bastian2011-06-091-1/+5
| | | | | | Reviewed-By: ogoffart Task-Number: QTBUG-10806 (cherry picked from commit 28b894f65c5aba01d5ee80c20f617478faaee7e7)
* Optimize QPixmapIconEngine's pixmap() functionaavit2011-06-091-14/+21
| | | | | | | | Replace needlessly expensive cache key generation Task-number: QTBUG-9850 Reviewed-by: Trond (cherry picked from commit ad6dafee9be288bcef6b2c4b318b234d2995abff)
* Fix compiler warning in QT_REQUIRE_VERSIONOlivier Goffart2011-06-092-1/+3
| | | | | | | | warning: format not a string literal and no format arguments Task-number: QTBUG-8967 Reviewed-by: Gabriel (cherry picked from commit 814f7d3d607edacca091273302297b6b2674424f)
* Fixed the sizing of the dock area with fixed size dock widgetsThierry Bastian2011-06-092-31/+19
| | | | | | | | | | It could happen that a dock area could be too wide. The problem was that we didn't really care whether or not the tab bar was visible. We would always take its minimum sizehint into account. Task-Number: QTBUG-10391 Reviewed-By: gabi (cherry picked from commit 8f53bf1b99d32caaebe8cbd1d9bd3a7381821988)
* Don't leak QVistaHelper from QWizardBradley T. Hughes2011-06-091-1/+2
| | | | | | | | | | The default QObject constructor was not called, meaning the vista helper was never registered as a child of the QWizard (and therefore never deleted when the QWizard was destructed). Task-number: QTBUG-10203 Reviewed-by: olivier (cherry picked from commit 6bc32600d2367e78ddc39dd93694e01d4d75958d)
* Fix a bug in QGraphicsItem::scroll.Alexis Menard2011-06-091-3/+4
| | | | | | | | | | If the rect argument is null, well we should not do the scrolling with an null rectangle but rather with the boundingRect like the documentation says. Task-number:QTBUG-10400 Reviewed-by:janarve (cherry picked from commit 44144cf60e978f7d5d70aec49d114d57832a78c3)
* Fix rtl issues with sliders in GTK styleJens Bache-Wiig2011-06-091-7/+16
| | | | | | | | | | | Sliders that draw groove decorations did not invert appearance correctly in vertical or rtl cases. With this fix we will flip the rectangles of the respective decorations and tell gtk if we are using an rtl widget or not. Task-number: QTBUG-8986 Reviewed-yb: thorbjorn (cherry picked from commit d52cc1ded5f30a6da0d11b9c3f7de66b2d3e9ee9)
* Fix missing pressed state for scrollbars with QGtkStyleJens Bache-Wiig2011-06-091-0/+5
| | | | | | | | | Pushing this to 4.7 as it is an easy fix and highly noticable in the latest official release of Ubuntu. Task-number: QTBUG-10396 Reviewed-by: thorbjorn (cherry picked from commit 5c1fe0fc017e116b2643d2b8278f7fca6fec10a1)
* Secure Cookies should only be sent over secure connections.Robert Hogan2011-06-092-0/+15
| | | | | | | | | | | | | | | | | | | | | | | http://bugreports.qt.nokia.com/browse/QTBUG-9618 QtWebKit currently fails the following test: LayoutTests/http/tests/xmlhttprequest/cookies.html This is because QNetworkCookieJar::cookiesForUrl returns secure cookies even when the connection is not secure. A 'secure' cookie is set by response headers from a http server as follows: 'Set-Cookie: cookie-name=value; secure' Correct QNetworkCookieJar::cookiesForUrl to ignore secure cookies when the url in the request is not 'https:'. Task-number: QTBUG-9618 Merge-request: 2372 Reviewed-by: Peter Hartmann <peter.hartmann@nokia.com> (cherry picked from commit 483fdd017d9998c6d7f4a035ca615e15fbc97e6a)
* Fixed the sizehint for cols/rows in qtableviewThierry Bastian2011-06-092-4/+25
| | | | | | | | | It could return wrong values because we were not always checking the right cols/rows. Reviewed-By: gabi Task-Number: QTBUG-10169 (cherry picked from commit 8bde410a6d0b1510d182a365d769db182b1c07dd)
* Cocoa: Native QFileDialog has problems selecting name filterRichard Moe Gustavsen2011-06-091-1/+1
| | | | | | | | | | | | The problem occured if you told the dialog to not show name filter details, then tried to select a filter specifying those details. The patch makes sure that we accept a filter as found in the drop down list if it matches the specified filter with or without details Task-number: QTBUG-8439 Reviewed-by: msorvig (cherry picked from commit 09c6d182a70f25626e12a739a9b7c3db937f47ce)
* QTabBar: Widgets inside the tab bar where not properly laid out after moveTab()Gabriel de Dietrich2011-06-093-11/+41
| | | | | | | | | | | Only the leftmost tab was being correctly laid out after the move due to a mistake in QTabBarPrivate::layoutTab(). Auto-test included. Reviewed-by: Thierry Task-number: QTBUG-10052 (cherry picked from commit 4743831d128dfad4ac9fbafa6e7544dbe7fb7ed2)
* Fixes wrong QGraphicsView's viewport cursor reset.Yoann Lopes2011-06-092-5/+35
| | | | | | | | | The cursor was reset even when it had not been previously saved. Autotest included. Task-number: QTBUG-7438 Reviewed-by: bnilsen (cherry picked from commit ad0c6b17cde4a3ce0041d1a54b96ccb5a6792520)
* Fixed assert failure when trying to load invalid SVG file.Kim Motoyoshi Kalland2011-06-091-1/+8
| | | | | | Task-number: QTBUG-10022 Reviewed-by: Trond (cherry picked from commit 13732b74e07fe10e95f2601f6cf2d0be78467eaa)
* QScrollArea: Excessive scrolling in focusNextPrevChild()Gabriel de Dietrich2011-06-091-2/+2
| | | | | | | | | | | We were scrolling horizontally even though the widget already fit the visible area horizontally. And conversely for vertical scrolling. Improves commit f1e92b2fdf6b6fd8aca0d05176c647dd68e21baa. Reviewed-by: Thierry Task-number: QTBUG-9425 (cherry picked from commit fa175f7c09e6e664f347ac9804b1a7db1d997ef2)
* Fix writing duplicate headers' properties in designer.Jarek Kobus2011-06-092-65/+0
| | | | | | | | | | | | Designer has written verticalHeaderVisible property in ui file twice: once done implicitly while saving the fake properties and once done explicitly inside QDesignerResource by calling saveWidget(QTableView/QTreeView). The latter is removed as it is redundant now. Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com> Task-number: QTBUG-9351 (cherry picked from commit 6f8364ac0c128eb8afe897b5d8f3f4e26b9105f5)