diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-09-30 14:39:57 (GMT) |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2009-09-30 14:39:57 (GMT) |
commit | 5022e56d71237292138cc8c912a467049c538445 (patch) | |
tree | a5d25c4797c36e8546879a02129aaa2d3f4af525 /src/testlib | |
parent | 76b8df83645c66c15d58bf12d7ffa3ea944ecb07 (diff) | |
download | Qt-5022e56d71237292138cc8c912a467049c538445.zip Qt-5022e56d71237292138cc8c912a467049c538445.tar.gz Qt-5022e56d71237292138cc8c912a467049c538445.tar.bz2 |
Compilation fix for tests thas doesn't include qapplication.h
Diffstat (limited to 'src/testlib')
-rw-r--r-- | src/testlib/qtestsystem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testlib/qtestsystem.h b/src/testlib/qtestsystem.h index e8b8359..8caec76 100644 --- a/src/testlib/qtestsystem.h +++ b/src/testlib/qtestsystem.h @@ -75,7 +75,7 @@ namespace QTest { #if defined(Q_WS_X11) qt_x11_wait_for_window_manager(window); - QApplication::processEvents(); + QCoreApplication::processEvents(); #elif defined(Q_WS_QWS) Q_UNUSED(window); qWait(100); |