| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
The problem was that when switching source, the previous one was still
running. So we now explicitly stop it.
|
|
|
|
|
|
|
| |
Instead of hard coding "make", use "$MAKE". If $MAKE is not set,
configure will export it for us when searching for "make".
Reviewed-by: Bradley T. Hughes <bradley.hughes@nokia.com>
|
|
|
|
|
|
|
| |
small patch to make sure even the native events of the pending ones
won't trigger anything in the paintevent
Task-number: 251776
|
|
|
|
|
|
|
|
|
|
|
| |
Zero timers don't fire on the first pass in the GLib event
dispatcher. Ideally I should fix the bug of course, but time doesn't
permit at the moment. Submitting this test instead as a "reminder".
The UNIX event dispatcher passes the test, and it also passes if
moved to the end of the slots.
Task: 259505
|
|
|
|
| |
Reviewed-by: Trust Me
|
|
|
|
|
|
| |
Added new overload with int64 parameter.
Reviewed-by: Simon Hausmann
|
|
|
|
|
|
|
|
|
|
| |
Webkit uses the runtime patching trick explained by "Feng Yuan" for
hooking these paint functions. It currently supports only 32bit assembly
code. This patch adds support for 64Bit version. Since inline-assemblies
are not supported for 64Bit, we have use a seperate .asm file.
Reviewed-by: Simon Hausmann
Reviewed-by: Thiago Macieira
|
|
|
|
| |
Reviewed-By: TrustMe
|
|
|
|
|
|
|
|
|
| |
some clarification (Task 229722) on what is a current item, what are
selected items, etc.
Task: 229722
Reviewed-By: TrustMe
|
|
|
|
|
|
|
| |
Now we just disable the updates during a short amount of time. This
should give enough time to the video to start.
Task-number: 251776
|
|\ |
|
| |
| |
| |
| | |
Task-number: 259482
|
|/
|
|
| |
Removes a few of cycles erronously included in the results.
|
| |
|
|
|
|
|
| |
Code compiled with 4.5 expects to find the QBenchmarkIterationController()
constructor, so ad an overload instead of replacing it.
|
|\
| |
| |
| |
| |
| | |
Conflicts:
configure
tests/auto/moc/tst_moc.cpp
|
| |
| |
| |
| |
| |
| |
| | |
See 3ae2cab9c8bd1790a00da2755ac036143a3a35f4 for another similar fix.
Reviewed-by: Trust Me
(cherry picked from commit 18fbfdf0f774198e2e1277e064cc3a8eb9dbb29d)
|
| |
| |
| |
| |
| |
| |
| | |
"../shared/qm.cpp", line 556.45: 1540-0207 (S) No common type found for operands with type "const char [7]" and "QByteArray".
Reviewed-by: Trust Me
(cherry picked from commit 3ae2cab9c8bd1790a00da2755ac036143a3a35f4)
|
| |
| |
| |
| | |
(cherry picked from commit cb64ac587249f5dc6563a035e2ef5a3ad2bc5d13)
|
| |
| |
| |
| |
| |
| |
| |
| | |
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>
(cherry picked from commit 0a63875d787e1b035ace2c76fa1d0de6329127d7)
|
| |
| |
| |
| |
| |
| | |
This is a vulnerability in some implementations. Qt isn't affected
because... well, we never implemented the decoding of escape sequences
:-)
|
| |
| |
| |
| |
| | |
Task-number: 239108
Reviewed-by: Andy Shaw
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
QTemporaryFile on Windows doesn't open the file as a sharable, and
doens't close the file when you call .close(). So the testcase
fails on Windows with a Sharing Violation when the compiler tries
to compile the file.
By switching to QFile we can at least close the file before letting
the compiler chew on it, and remove it at the end when the testcase
is done. Open the file with Truncate, in case the testcase fails to
remove the file.
Reviewed-by: trustme
|
| |
| |
| |
| |
| |
| |
| | |
Task-number: 259143
Merge-request: 1119
Reviewed-by: Denis Dzyubenko <denis.dzyubenko@nokia.com>
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
On mac, we prefer testing with mp3 rather than ogg, Because in the latter
case, you must install perian to make it work. And the test machines
dont.
Reviewed-by: brad
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
The test was failing because the goal of the test expect to get only
directories displayed. But if you don't have some in the current dir
then it fails. home dir should be enough.
Reviewed-by:TrustMe
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
QTableView with header-swapped rows wouldn't scroll correctly when PageUp or PageDown pressed.
Simplified calculation for next currentIndex provided in QTableView::moveCursor.
Task-number: 259308
Reviewed-by: olivier
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
use correct function pointer (Get)
Reviewed-by: Thomas Hartmann
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
Using a linked list, rather than a QList improves connection
performance by eliminating the QList allocation costs.
Reviewed-by: brad
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
previous version could run in an endless loop with infinite models.
Reviewed-by: olivier
|
| |
| |
| |
| |
| |
| | |
We must guard the code with QT_WINCE_GESTURES.
Reviewed-by: TrustMe
|
| |
| |
| |
| |
| | |
The QTabletWidget shows the informations provided by the last
QTabletEvent.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
We only reacted to font changes before when the whole theme changed.
Two things had to be fixed to support this. We need to check if the
font changed in QGtkStyle::updateTheme and we need to make sure that
QApplication does not reset these settings for us.
Reviewed-by: joao
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Added some static functions to QIcon to support desktop
themes based on the freedesktop spec. It is not intended to
replace KIcon and the intention is to use it when available to
share icon cache between applications.
Applications currently using icon themes are Assistant, Designer
and the textedit demo.
Reviewed-by: ogoffart
|
| | |
|
|\ \ |
|
| | |
| | |
| | |
| | |
| | |
| | | |
There's no getenv on Windows CE.
Reviewed-By: Simon Hausmann
|
| | |
| | |
| | |
| | | |
Reviewed-by: Leo
|
| | |
| | |
| | |
| | |
| | |
| | | |
whitespaces fixed
Reviewed-by: TrustMe
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Code is adapted from QCommonStyle which handles this case for other
styles.
Reviewed-by: thartman
|
| | |
| | |
| | |
| | |
| | |
| | | |
We cannot create too many threads on Windows CE.
Reviewed-By: thartman
|