summaryrefslogtreecommitdiffstats
path: root/tests/auto/qfileinfo
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2010-05-02 07:38:39 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2010-05-02 07:38:39 (GMT)
commit2c4a5cee336aba5f2da52ac4c59b502cf4d82164 (patch)
treedc7857f6d2342b85099a799faafaa863fb36a516 /tests/auto/qfileinfo
parent576cb12c36f24917d674f4c0bf240441b4ac9b43 (diff)
parentf101d46ccd4795fc672b5b6c9e24151df319d725 (diff)
downloadQt-2c4a5cee336aba5f2da52ac4c59b502cf4d82164.zip
Qt-2c4a5cee336aba5f2da52ac4c59b502cf4d82164.tar.gz
Qt-2c4a5cee336aba5f2da52ac4c59b502cf4d82164.tar.bz2
Merge remote branch 'origin/4.7' into qt-master-from-4.7
Diffstat (limited to 'tests/auto/qfileinfo')
-rw-r--r--tests/auto/qfileinfo/tst_qfileinfo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/qfileinfo/tst_qfileinfo.cpp b/tests/auto/qfileinfo/tst_qfileinfo.cpp
index 403c5f9..4c651bf 100644
--- a/tests/auto/qfileinfo/tst_qfileinfo.cpp
+++ b/tests/auto/qfileinfo/tst_qfileinfo.cpp
@@ -1120,9 +1120,9 @@ void tst_QFileInfo::isHidden_data()
t << "foobar";
QFile file2(notHiddenFileName);
- QVERIFY(file2.open(QIODevice::WriteOnly))
- QTextStream t(&file);
- t << "foobar";
+ QVERIFY(file2.open(QIODevice::WriteOnly));
+ QTextStream t2(&file2);
+ t2 << "foobar";
}
RFs rfs;