mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-09 04:30:43 +00:00
Merge commit '1484a5e9334b9ef5ac6eca69a78ca926ddbd88c8'
This commit is contained in:
commit
1e20707edf
@ -139,8 +139,8 @@ class gLineChart: public Layer
|
||||
layer->m_report_empty = m_report_empty;
|
||||
layer->m_square_plot = m_square_plot;
|
||||
layer->m_disable_accel = m_disable_accel;
|
||||
layer->subtract_offset = layer->subtract_offset;
|
||||
layer->m_codes = layer->m_codes;
|
||||
layer->subtract_offset = subtract_offset;
|
||||
layer->m_codes = m_codes;
|
||||
layer->m_threshold = m_threshold;
|
||||
layer->m_square = m_square;
|
||||
layer->m_enabled = m_enabled;
|
||||
|
@ -134,7 +134,7 @@ int FPIconLoader::Open(QString path)
|
||||
if (m) {
|
||||
c+=OpenMachine(m, npath);
|
||||
}
|
||||
} catch (OneTypePerDay e) {
|
||||
} catch (OneTypePerDay& e) {
|
||||
Q_UNUSED(e)
|
||||
p_profile->DelMachine(m);
|
||||
MachList.erase(MachList.find(info.serial));
|
||||
|
@ -581,7 +581,7 @@ void Profile::LoadMachineData()
|
||||
} else {
|
||||
try {
|
||||
m->Load();
|
||||
} catch (OldDBVersion e) {
|
||||
} catch (OldDBVersion& e) {
|
||||
Q_UNUSED(e)
|
||||
DataFormatError(m);
|
||||
}
|
||||
|
@ -490,8 +490,8 @@ void loadChannels()
|
||||
void MainWindow::on_aboutToQuit()
|
||||
{
|
||||
Notify(QObject::tr("Don't forget to place your datacard back in your CPAP machine"), QObject::tr("SleepyHead Reminder"));
|
||||
QThread::msleep(1000);
|
||||
QApplication::processEvents();
|
||||
QThread::msleep(1000);
|
||||
}
|
||||
|
||||
void MainWindow::closeEvent(QCloseEvent * event)
|
||||
|
Loading…
Reference in New Issue
Block a user