Minor cruft.. shut annoying g++ variable warnings up

This commit is contained in:
Mark Watkins 2014-10-09 02:06:08 +10:00
parent b69c0236c8
commit 3ac96500d2
6 changed files with 12 additions and 13 deletions

View File

@ -191,7 +191,7 @@ void gDailySummary::paint(QPainter &painter, gGraph &w, const QRegion &region)
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

View File

@ -126,7 +126,6 @@ void copyPath(QString src, QString dst)
}
QString STR_UNIT_CM;
QString STR_UNIT_INCH;
QString STR_UNIT_FOOT;

View File

@ -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";

View File

@ -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()

View File

@ -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>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;This setting should be used with caution...&lt;/span&gt; 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. &lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;ResMed users:&lt;/span&gt; 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.&lt;/p&gt;&lt;p&gt;This option exists to pacify those who don't care and want to see this &amp;quot;fixed&amp;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.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;This setting should be used with caution...&lt;/span&gt; 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. &lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;ResMed users:&lt;/span&gt; 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.&lt;/p&gt;&lt;p&gt;This option exists to pacify those who don't care and want to see this &amp;quot;fixed&amp;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.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="text">
<string>Don't Split Summary Days (Warning: read the tooltip!)</string>

View File

@ -30,6 +30,10 @@ DEFINES += LOCK_RESMED_SESSIONS
CONFIG += rtti
*-g++* {
QMAKE_CXXFLAGS += -no-unused-variable
}
#static {
# CONFIG += static
# QTPLUGIN += qsvg qgif qpng