diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-08-11 07:43:47 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-08-11 07:43:47 (GMT) |
commit | a329c91a197c90854cbc6ce2a626935ff1d57680 (patch) | |
tree | 821558ee2d5fba0454493e7369b5cb37aa4b5776 | |
parent | d1ce08936b4a6f4ce2b2e878287de76d47df0b8c (diff) | |
download | Qt-a329c91a197c90854cbc6ce2a626935ff1d57680.zip Qt-a329c91a197c90854cbc6ce2a626935ff1d57680.tar.gz Qt-a329c91a197c90854cbc6ce2a626935ff1d57680.tar.bz2 |
Fixed qsocketnotifier autotest compilation for win32-msvc2008 platform.
-rw-r--r-- | tests/auto/qsocketnotifier/tst_qsocketnotifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qsocketnotifier/tst_qsocketnotifier.cpp b/tests/auto/qsocketnotifier/tst_qsocketnotifier.cpp index a6064bc..a29674f 100644 --- a/tests/auto/qsocketnotifier/tst_qsocketnotifier.cpp +++ b/tests/auto/qsocketnotifier/tst_qsocketnotifier.cpp @@ -175,7 +175,7 @@ void tst_QSocketNotifier::unexpectedDisconnection() QVERIFY(readEnd2.state() == QAbstractSocket::ConnectedState); #if defined(Q_OS_WIN) qWarning("### Windows returns 1 activation, Unix returns 2."); - QCOMPARE(tester.sequence, 1); + QCOMPARE(tester.getSequence(), 1); #else QCOMPARE(tester.getSequence(), 2); #endif |