mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Correct error dialog when data cannot be written to OSCAR_Data
Also minor update to Release Notes
This commit is contained in:
parent
28ac40a6f9
commit
a06d37e10e
@ -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>
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user