Completely reorganize the library, moving up to Qt 5.4, using C++11 where reasonably possible, and reorganizing the includes.

This commit is contained in:
Nathan Osman
2016-10-06 21:50:45 -07:00
parent 7930ef4a50
commit 7c460edb57
48 changed files with 312 additions and 247 deletions

View File

@@ -106,7 +106,7 @@ void TestQFilesystemHandler::testRequests()
QTRY_COMPARE(client.statusCode(), statusCode);
if(!data.isNull()) {
if (!data.isNull()) {
QTRY_COMPARE(client.data(), data);
}
}
@@ -114,7 +114,7 @@ void TestQFilesystemHandler::testRequests()
bool TestQFilesystemHandler::createFile(const QString &path)
{
QFile file(QDir(dir.path()).absoluteFilePath(path));
if(!file.open(QIODevice::WriteOnly)) {
if (!file.open(QIODevice::WriteOnly)) {
return false;
}