diff options
Diffstat (limited to 'Tests/Qt4Deploy/testdeploy.cpp')
-rw-r--r-- | Tests/Qt4Deploy/testdeploy.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Tests/Qt4Deploy/testdeploy.cpp b/Tests/Qt4Deploy/testdeploy.cpp index 255453a..33c0bb3 100644 --- a/Tests/Qt4Deploy/testdeploy.cpp +++ b/Tests/Qt4Deploy/testdeploy.cpp @@ -9,19 +9,19 @@ int main(int argc, char** argv) QCoreApplication app(argc, argv); qDebug() << "App path:" << app.applicationDirPath(); - qDebug() << "Plugin path:" << QLibraryInfo::location(QLibraryInfo::PluginsPath); + qDebug() << "Plugin path:" + << QLibraryInfo::location(QLibraryInfo::PluginsPath); bool foundSqlite = false; qDebug() << "Supported Database Drivers:"; - foreach(const QString &sqlDriver, QSqlDatabase::drivers()) - { + foreach (const QString& sqlDriver, QSqlDatabase::drivers()) { qDebug() << " " << sqlDriver; - if(sqlDriver == "QSQLITE") + if (sqlDriver == "QSQLITE") foundSqlite = true; } - if(foundSqlite) + if (foundSqlite) qDebug() << "Found sqlite support from plugin."; else qDebug() << "Could not find sqlite support from plugin."; |