| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Before this patch gcc would fail with this message:
internal compiler error: in add_virtual_operand, at tree-ssa-operands.c:1317
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@nokia.com>
|
|
|
|
|
|
|
|
| |
gcc was complaining about format string not being a string literal.
Also fixes the small chance that error messages would be bogus if
they contain printf control characters.
Reviewed-by: Bradley T. Hughes <bradley.hughes@nokia.com>
|
|
|
|
| |
Reviewed-by: gunnar
|
|
|
|
|
|
|
|
|
| |
Use a static buffer for small strings, and making it oom safe.
We can now see messages up to 512 bytes even if we run out of memory
(important for OOM tests). Also, testlogging (< 512 bytes per line)
should again work without a single allocation.
Reviewed-By: Rohan McGovern <rohan.mcgovern@nokia.com>
|
|
|
|
| |
Reviewed-By: TrustMe
|
|
|
|
| |
Reviewed-By: TrustMe
|
|
|
|
|
|
|
|
|
|
|
| |
Move the code out of qapplication_x11.cpp, and qcommonstyle.cpp
to qkde.cpp into the QKde namespace.
This removes few of the code duplication, and is much cleaner.
This will also let us install hook easily later.
Reviewed-by: Jens Bache-Wiig
|
|
|
|
| |
Task-number: 258459
|
|
|
|
|
| |
In preparation of making the old QtScript back-end a separate
package/solution.
|
|
|
|
| |
Reviewed-by: Kent Hansen
|
|
|
|
|
|
|
|
| |
If the current index is invalid, start would be (0,0) but would be
skiped
Task-number: 220195
Reviewed-by: thierry
|
|
|
|
|
|
| |
This does not change the behavior of the method.
Reviewed-by: andreas
|
|
|
|
|
|
| |
... by prepending SRCDIR to the loaded files.
Reviewed-by: TrustMe
|
|
|
|
|
|
|
|
|
| |
If files for deployment for windows ce are missing we get an error
message now. Wilcards have to behandled special because
QFileInfo::exists() does not work with wildcards.
QFileInfo::absoluteFilePath() does work with wildcards
Reviewed-by: Mauricek
|
|
|
|
|
|
|
| |
On windows mobile with native menubar integration the menubar is not
a child of the mainwindow
Reviewed-by: Joerg
|
|
|
|
|
|
| |
This extra check prevents a crash if plugin loading fails
Reviewed-by: Joerg
|
|
|
|
|
|
| |
Windows CE is sometimes a little bit slow
Reviewed-by: Joerg
|
|
|
|
| |
Reviewed-by: Joerg
|
|
|
|
|
|
|
|
| |
Rather than requiring an allocation of the "shared data" region,
QObject *'s should be stored directly in the data structure. This very
marginally, but measurably, improves QVariant performance.
Reviewed-by: Thiago Macieira
|
|
|
|
|
|
| |
We cannot remove a file that's still opened.
Reviewed-by: ossi
|
|
|
|
|
|
| |
There's no time() on Windows CE.
Reviewed-by: Daniel Molkentin
|
|
|
|
|
|
|
| |
Win CE doesn't support real file permissions (FAT only).
Further, we don't have pagefile.sys.
Reviewed-by: thartman
|
|
|
|
|
|
|
|
| |
These tests run against domain names in troll.no and to allow shorter
names the machine has to be in this domain.
Removing them since this specific case test the OS more than Qt itself.
Reviewed-by: Thiago
|
|
|
|
| |
Reviewed-by: thartman
|
|
|
|
|
|
|
|
| |
There's a restriction to output only 255 characters per line.
The loop we had before was wrong and did some read operations somewhere
behinde the end of the message string.
Reviewed-by: thartman
|
|
|
|
|
|
|
| |
The TCP socket must get the chance to read data into its read buffer
after the first read operation emptied it.
Reviewed-by: thartman
|
|
|
|
| |
Reviewed-by: thartman
|
|
|
|
|
|
|
|
|
| |
QProcess is supposed to be reentrant but was not on Unix. The
constructor of QProcessManager could be exectued several time when
QProcess is created. The construction is now protected by a mutex.
Task-number: 254246
Reviewed-by: Olivier Goffart
|
|
|
|
| |
mingw doesn't support format with %llu or %ll. So I used a QString
|
|
|
|
|
| |
moved static CRITICAL_SECTIONs to cpp files. In header they would be
declared more than once depending on what file includes those headers.
|
|
|
|
| |
getQApplicationPrivateInternal was not declared
|
|
|
|
| |
Reviewed-by: jesper
|
| |
|
|\ |
|
| |
| |
| |
| | |
Cocoa: Add support for native gestures
|
|/
|
|
|
|
|
|
|
|
|
| |
Use widget->layoutDirection() instead of QApplication::layoutDirection()
where applicable, which caused it to break for the case that Designer's
layoutDirection does not match that of a widget [property].
In addition, position the submenu correctly on the left side in the case
of RTL.
Reviewed-by: Jarek Kobus <jkobus@trolltech.com>
Task-number: 259238
|
| |
|
| |
|
|
|
|
| |
__qt_sender__ is evil. Gah.
|
|
|
|
|
|
|
| |
setCursorPosition() should be able to set the cursor at the end of the
string. This is a copy-paste error made when refactoring QLineEdit.
Reviewed-by: Gunnar
|
| |
|
|
|
|
| |
We should not unlock too early, or node might get deleted.
|
|
|
|
|
|
| |
defaultRowSizes was broken on oxygen style because of missing icons.
Reviewed-by: paul
|
|
|
|
|
|
|
|
|
|
|
| |
When selecting the text and setting the cursor position, we need to
emit the cursorPositionChanged signal. This seems to be a copy-paste
error from refactoring QLineEdit, as the function call is there in the
original version of setSelection(). The effect was two test breakages
in tst_QDateTimeEdit, because the section and cursor position of the
QDateTimeEdit would be out of sync.
Reviewed-by: Gunnar
|
| |
|
|
|
|
|
|
|
|
| |
before, it asserted; now, the test is not asserting anymore but
still failing, because the fix is not yet checked in. Additionally,
it now runs from a shadow directory.
Reviewed-by: TrustMe
|
|
|
|
|
|
|
|
| |
dnotify is something from older linux kernels and cannot be trusted, therefore
we skip some tests. Also we cannot guarantee that 1 operation on the file give only
1 notification in general, so we relaxed the conditions.
Reviewed-by: paul
|
|
|
|
|
| |
Apperently we don't get the leave event when simply moving the
mouse with the testlib
|
| |
|
| |
|