Make sure to call SaveSummary() after ResMed import

This commit is contained in:
Mark Watkins 2018-05-29 18:12:37 +10:00
parent e6912fcf08
commit 8d8648fe20
3 changed files with 20 additions and 4 deletions

View File

@ -2664,7 +2664,7 @@ int ResmedLoader::Open(const QString & dirpath)
emit updateMessage(QObject::tr("Importing Sessions...")); emit updateMessage(QObject::tr("Importing Sessions..."));
runTasks(); runTasks();
int num_new_sessions = sessionCount; int num_new_sessions = sessionCount;
mach->SaveSummary();
//////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////
// Now look for any new summary data that can be extracted from STR.edf records // Now look for any new summary data that can be extracted from STR.edf records
@ -2690,7 +2690,7 @@ int ResmedLoader::Open(const QString & dirpath)
// strsess.erase(e); // strsess.erase(e);
// } // }
// } // }
/// //
/* QHash<SessionID, Session *>::iterator sessit; /* QHash<SessionID, Session *>::iterator sessit;
QHash<SessionID, Session *>::iterator sessend = mach->sessionlist.end();; QHash<SessionID, Session *>::iterator sessend = mach->sessionlist.end();;

View File

@ -1,4 +1,13 @@
#include "welcome.h" /* Welcome page Implementation
*
* Copyright (c) 2018 Mark Watkins <mark@jedimark.net>
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of Source Code. */
#include <cmath>
#include "welcome.h"
#include "ui_welcome.h" #include "ui_welcome.h"
#include "mainwindow.h" #include "mainwindow.h"

View File

@ -1,4 +1,11 @@
#ifndef WELCOME_H /* Welcome page Header
*
* Copyright (c) 2018 Mark Watkins <mark@jedimark.net>
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of Source Code. */
#ifndef WELCOME_H
#define WELCOME_H #define WELCOME_H
#include <QWidget> #include <QWidget>