mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Minor cruft.. shut annoying g++ variable warnings up
This commit is contained in:
parent
b69c0236c8
commit
3ac96500d2
@ -191,7 +191,7 @@ void gDailySummary::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
|
||||
int top = rect.top()-10;
|
||||
int left = rect.left();
|
||||
int width = rect.width();
|
||||
//int width = rect.width();
|
||||
int height = rect.height()+10;
|
||||
|
||||
// Draw bounding box
|
||||
|
@ -126,7 +126,6 @@ void copyPath(QString src, QString dst)
|
||||
}
|
||||
|
||||
|
||||
|
||||
QString STR_UNIT_CM;
|
||||
QString STR_UNIT_INCH;
|
||||
QString STR_UNIT_FOOT;
|
||||
|
@ -123,9 +123,6 @@ const QString STR_GEN_UpdatesAutoCheck = "Updates_AutoCheck";
|
||||
const QString STR_GEN_UpdateCheckFrequency = "Updates_CheckFrequency";
|
||||
const QString STR_GEN_DataFolder = "DataFolder";
|
||||
|
||||
const QString STR_GEN_On = QObject::tr("On");
|
||||
const QString STR_GEN_Off = QObject::tr("Off");
|
||||
|
||||
const QString STR_PREF_AllowEarlyUpdates = "AllowEarlyUpdates";
|
||||
const QString STR_PREF_ReimportBackup = "ReimportBackup";
|
||||
const QString STR_PREF_LastCPAPPath = "LastCPAPPath";
|
||||
|
@ -101,14 +101,14 @@ PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
|
||||
|
||||
if (val > 0) {
|
||||
ui->combineLCD->display(val);
|
||||
} else { ui->combineLCD->display(STR_GEN_Off); }
|
||||
} else { ui->combineLCD->display(STR_TR_Off); }
|
||||
|
||||
val = profile->session->ignoreShortSessions();
|
||||
ui->IgnoreSlider->setValue(val);
|
||||
|
||||
if (val > 0) {
|
||||
ui->IgnoreLCD->display(val);
|
||||
} else { ui->IgnoreLCD->display(STR_GEN_Off); }
|
||||
} else { ui->IgnoreLCD->display(STR_TR_Off); }
|
||||
|
||||
ui->LockSummarySessionSplitting->setChecked(profile->session->lockSummarySessions());
|
||||
|
||||
@ -923,22 +923,21 @@ void PreferencesDialog::on_combineSlider_valueChanged(int position)
|
||||
{
|
||||
if (position > 0) {
|
||||
ui->combineLCD->display(position);
|
||||
} else { ui->combineLCD->display(STR_GEN_Off); }
|
||||
} else { ui->combineLCD->display(STR_TR_Off); }
|
||||
}
|
||||
|
||||
void PreferencesDialog::on_IgnoreSlider_valueChanged(int position)
|
||||
{
|
||||
if (position > 0) {
|
||||
ui->IgnoreLCD->display(position);
|
||||
} else { ui->IgnoreLCD->display(STR_GEN_Off); }
|
||||
} else { ui->IgnoreLCD->display(STR_TR_Off); }
|
||||
}
|
||||
|
||||
#include "mainwindow.h"
|
||||
extern MainWindow *mainwin;
|
||||
void PreferencesDialog::RefreshLastChecked()
|
||||
{
|
||||
ui->updateLastChecked->setText(PREF[STR_GEN_UpdatesLastChecked].toDateTime().toString(
|
||||
Qt::SystemLocaleLongDate));
|
||||
ui->updateLastChecked->setText(PREF[STR_GEN_UpdatesLastChecked].toDateTime().toString(Qt::SystemLocaleLongDate));
|
||||
}
|
||||
|
||||
void PreferencesDialog::on_checkForUpdatesButton_clicked()
|
||||
|
@ -51,7 +51,7 @@
|
||||
<item>
|
||||
<widget class="QTabWidget" name="tabWidget">
|
||||
<property name="currentIndex">
|
||||
<number>1</number>
|
||||
<number>0</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="importTab">
|
||||
<attribute name="title">
|
||||
@ -308,7 +308,7 @@ p, li { white-space: pre-wrap; }
|
||||
<item>
|
||||
<widget class="QCheckBox" name="LockSummarySessionSplitting">
|
||||
<property name="toolTip">
|
||||
<string><html><head/><body><p><span style=" font-weight:600;">This setting should be used with caution...</span> Switching it off comes with consequences involving accuracy of summary only days, as certain calculations only work properly provided summary only sessions that came from individual day records are kept together. </p><p><span style=" font-weight:600;">ResMed users:</span> Just because it seems natural to you and I that the 12 noon session restart should be in the previous day, does not mean ResMed's data agrees with us. The STF.edf summary index format has serious weaknesses that make doing this not a good idea.</p><p>This option exists to pacify those who don't care and want to see this &quot;fixed&quot; no matter the costs, but know it comes with a cost. If you keep your SD card in every night, and import at least once a week, and you won't see problems with this very often.</p></body></html></string>
|
||||
<string><html><head/><body><p><span style=" font-weight:600;">This setting should be used with caution...</span> Switching it off comes with consequences involving accuracy of summary only days, as certain calculations only work properly provided summary only sessions that came from individual day records are kept together. </p><p><span style=" font-weight:600;">ResMed users:</span> Just because it seems natural to you and I that the 12 noon session restart should be in the previous day, does not mean ResMed's data agrees with us. The STF.edf summary index format has serious weaknesses that make doing this not a good idea.</p><p>This option exists to pacify those who don't care and want to see this &quot;fixed&quot; no matter the costs, but know it comes with a cost. If you keep your SD card in every night, and import at least once a week, you won't see problems with this very often.</p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Don't Split Summary Days (Warning: read the tooltip!)</string>
|
||||
|
@ -30,6 +30,10 @@ DEFINES += LOCK_RESMED_SESSIONS
|
||||
CONFIG += rtti
|
||||
|
||||
|
||||
*-g++* {
|
||||
QMAKE_CXXFLAGS += -no-unused-variable
|
||||
}
|
||||
|
||||
#static {
|
||||
# CONFIG += static
|
||||
# QTPLUGIN += qsvg qgif qpng
|
||||
|
Loading…
Reference in New Issue
Block a user