Move notes to General tab on Group Preview Panel (#3336)

This commit is contained in:
Balazs Gyurak 2019-06-29 02:48:25 +01:00 committed by Jonathan White
parent 0e0cba653f
commit a0d1304bfc
5 changed files with 174 additions and 121 deletions

View file

@ -50,7 +50,8 @@ int Analyze::executeWithDatabase(QSharedPointer<Database> database, QSharedPoint
QString hibpDatabase = parser->value(Analyze::HIBPDatabaseOption);
QFile hibpFile(hibpDatabase);
if (!hibpFile.open(QFile::ReadOnly)) {
errorTextStream << QObject::tr("Failed to open HIBP file %1: %2").arg(hibpDatabase).arg(hibpFile.errorString()) << endl;
errorTextStream << QObject::tr("Failed to open HIBP file %1: %2").arg(hibpDatabase).arg(hibpFile.errorString())
<< endl;
return EXIT_FAILURE;
}