diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-03-24 18:08:20 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-03-24 18:08:20 (GMT) |
commit | 10ecfc2a444263a2fbaf2ebbf401eac62b6ff70b (patch) | |
tree | bb19a6cdfc60d767978b711e7160bf4dc347cc60 /src/corelib/io | |
parent | d44a204988320c7c1a990536565fcb655d34db1e (diff) | |
parent | e15d5fc7e1a82da38b765e55d040edbdf8621ae2 (diff) | |
download | Qt-10ecfc2a444263a2fbaf2ebbf401eac62b6ff70b.zip Qt-10ecfc2a444263a2fbaf2ebbf401eac62b6ff70b.tar.gz Qt-10ecfc2a444263a2fbaf2ebbf401eac62b6ff70b.tar.bz2 |
Merge remote branch 'origin/4.7' into HEAD
Four-way merge: take the qt-qml.git#4.7 branch version (which uses
fromUtf8). I used QLatin1String, Thierry used QString::fromLatin1.
Conflicts:
src/declarative/qml/qdeclarativecompiler.cpp
Diffstat (limited to 'src/corelib/io')
-rw-r--r-- | src/corelib/io/qwindowspipewriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qwindowspipewriter.cpp b/src/corelib/io/qwindowspipewriter.cpp index 394323f..eb42c20 100644 --- a/src/corelib/io/qwindowspipewriter.cpp +++ b/src/corelib/io/qwindowspipewriter.cpp @@ -100,7 +100,7 @@ qint64 QWindowsPipeWriter::write(const char *ptr, qint64 maxlen) void QWindowsPipeWriter::run() { - OVERLAPPED overl = {0, 0, 0, 0, NULL}; + OVERLAPPED overl = {0, 0, {{ 0 }}, 0}; overl.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL); forever { lock.lock(); |