Correct error dialog when data cannot be written to OSCAR_Data

Also minor update to Release Notes
This commit is contained in:
Guy Scharf 2021-01-18 21:47:59 -07:00
parent 28ac40a6f9
commit a06d37e10e
2 changed files with 2 additions and 2 deletions

View File

@ -32,6 +32,7 @@
<li>[fix] Newly entered notes no longer lost when importing new day or purging oximetry data.</li> <li>[fix] Newly entered notes no longer lost when importing new day or purging oximetry data.</li>
<li>[fix] Purge currently selected day no longer deletes bookmarks for that day.</li> <li>[fix] Purge currently selected day no longer deletes bookmarks for that day.</li>
<li>[fix] Remove warning from Chromebook when importing from previously used local folder.</li> <li>[fix] Remove warning from Chromebook when importing from previously used local folder.</li>
<li>[fix] Update link to Contec drivers.</li>
</ul> </ul>
<p> <p>
<b>Changes and fixes in OSCAR v1.2.0</b> <b>Changes and fixes in OSCAR v1.2.0</b>

View File

@ -564,8 +564,7 @@ int main(int argc, char *argv[]) {
if (testFile.exists()) if (testFile.exists())
testFile.remove(); testFile.remove();
if (!testFile.open(QFile::ReadWrite)) { if (!testFile.open(QFile::ReadWrite)) {
QString errMsg = QObject::tr("Unable to write to OSCAR data directory") + " " + GetAppData() + "\n" + QString errMsg = QObject::tr("Unable to write to OSCAR data directory") + " " + GetAppData() + "\n\n" +
GetAppData() + "\n" +
QObject::tr("Error code") + ": " + QString::number(testFile.error()) + " - " + testFile.errorString() + "\n\n" + QObject::tr("Error code") + ": " + QString::number(testFile.error()) + " - " + testFile.errorString() + "\n\n" +
QObject::tr("OSCAR cannot continue and is exiting.") + "\n"; QObject::tr("OSCAR cannot continue and is exiting.") + "\n";
qCritical() << errMsg; qCritical() << errMsg;