mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
MSVC2010 build fixes
This commit is contained in:
parent
ea55c36323
commit
13fc0a69af
@ -29,7 +29,7 @@ struct ValueCount {
|
|||||||
// Primarily sort by value
|
// Primarily sort by value
|
||||||
bool operator <(const ValueCount & a, const ValueCount & b);
|
bool operator <(const ValueCount & a, const ValueCount & b);
|
||||||
|
|
||||||
const float ounce_convert=28.3495231; // grams
|
const float ounce_convert=28.3495231F; // grams
|
||||||
const float pound_convert=ounce_convert*16;
|
const float pound_convert=ounce_convert*16;
|
||||||
|
|
||||||
QString weightString(float kg, UnitSystem us=US_Undefined);
|
QString weightString(float kg, UnitSystem us=US_Undefined);
|
||||||
|
@ -6,7 +6,10 @@
|
|||||||
|
|
||||||
#include "common_gui.h"
|
#include "common_gui.h"
|
||||||
#include "qglobal.h"
|
#include "qglobal.h"
|
||||||
|
|
||||||
|
#ifndef BUILD_WITH_MSVC
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef Q_WS_WIN32
|
#ifdef Q_WS_WIN32
|
||||||
#include "windows.h"
|
#include "windows.h"
|
||||||
|
@ -957,7 +957,7 @@ void Daily::Load(QDate date)
|
|||||||
float percentile=PROFILE.general->prefCalcPercentile()/100.0;
|
float percentile=PROFILE.general->prefCalcPercentile()/100.0;
|
||||||
|
|
||||||
SummaryType ST_max=PROFILE.general->prefCalcMax() ? ST_MAX : ST_PERC;
|
SummaryType ST_max=PROFILE.general->prefCalcMax() ? ST_MAX : ST_PERC;
|
||||||
const EventDataType maxperc=0.995;
|
const EventDataType maxperc=0.995F;
|
||||||
|
|
||||||
QString midname;
|
QString midname;
|
||||||
if (ST_mid==ST_WAVG) midname=tr("Avg");
|
if (ST_mid==ST_WAVG) midname=tr("Avg");
|
||||||
|
@ -174,7 +174,7 @@ void ExportCSV::on_exportButton_clicked()
|
|||||||
p90list.append(CPAP_Pressure);
|
p90list.append(CPAP_Pressure);
|
||||||
p90list.append(CPAP_IPAP);
|
p90list.append(CPAP_IPAP);
|
||||||
p90list.append(CPAP_EPAP);
|
p90list.append(CPAP_EPAP);
|
||||||
EventDataType percent=0.90;
|
EventDataType percent=0.90F;
|
||||||
|
|
||||||
// Not sure this section should be translateable.. :-/
|
// Not sure this section should be translateable.. :-/
|
||||||
if (ui->rb1_details->isChecked()) {
|
if (ui->rb1_details->isChecked()) {
|
||||||
|
@ -672,7 +672,7 @@ void MainWindow::on_summaryButton_clicked()
|
|||||||
int cpapyeardays=PROFILE.countDays(MT_CPAP,cpapyear,lastcpap);
|
int cpapyeardays=PROFILE.countDays(MT_CPAP,cpapyear,lastcpap);
|
||||||
int cpap6monthdays=PROFILE.countDays(MT_CPAP,cpap6month,lastcpap);
|
int cpap6monthdays=PROFILE.countDays(MT_CPAP,cpap6month,lastcpap);
|
||||||
|
|
||||||
CPAPMode cpapmode=(CPAPMode)p_profile->calcSettingsMax(CPAP_Mode,MT_CPAP,firstcpap,lastcpap);
|
CPAPMode cpapmode=(CPAPMode)(int)p_profile->calcSettingsMax(CPAP_Mode,MT_CPAP,firstcpap,lastcpap);
|
||||||
|
|
||||||
float percentile=PROFILE.general->prefCalcPercentile()/100.0;
|
float percentile=PROFILE.general->prefCalcPercentile()/100.0;
|
||||||
|
|
||||||
@ -944,9 +944,9 @@ void MainWindow::on_summaryButton_clicked()
|
|||||||
ahi/=hours;
|
ahi/=hours;
|
||||||
AHI.push_back(UsageData(date,ahi,hours));
|
AHI.push_back(UsageData(date,ahi,hours));
|
||||||
|
|
||||||
prelief=(PRTypes)round(day->settings_wavg(CPAP_PresReliefType));
|
prelief=(PRTypes)(int)round(day->settings_wavg(CPAP_PresReliefType));
|
||||||
prelset=round(day->settings_wavg(CPAP_PresReliefSet));
|
prelset=round(day->settings_wavg(CPAP_PresReliefSet));
|
||||||
mode=(CPAPMode)round(day->settings_wavg(CPAP_Mode));
|
mode=(CPAPMode)(int)round(day->settings_wavg(CPAP_Mode));
|
||||||
mach=day->machine;
|
mach=day->machine;
|
||||||
if (mode>=MODE_ASV) {
|
if (mode>=MODE_ASV) {
|
||||||
min=day->settings_min(CPAP_EPAP);
|
min=day->settings_min(CPAP_EPAP);
|
||||||
|
@ -108,7 +108,7 @@ Overview::Overview(QWidget *parent,gGraphView * shared) :
|
|||||||
if (mididx==2) ST_mid=ST_AVG;
|
if (mididx==2) ST_mid=ST_AVG;
|
||||||
|
|
||||||
SummaryType ST_max=PROFILE.general->prefCalcMax() ? ST_MAX : ST_PERC;
|
SummaryType ST_max=PROFILE.general->prefCalcMax() ? ST_MAX : ST_PERC;
|
||||||
const EventDataType maxperc=0.995;
|
const EventDataType maxperc=0.995F;
|
||||||
|
|
||||||
|
|
||||||
US=createGraph(tr("Session Times"),tr("Session Times\n(hours)"),YT_Time);
|
US=createGraph(tr("Session Times"),tr("Session Times\n(hours)"),YT_Time);
|
||||||
|
@ -356,7 +356,8 @@ typedef uLong FAR uLongf;
|
|||||||
typedef Byte *voidp;
|
typedef Byte *voidp;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if 1 /* was set to #if 1 by ./configure */
|
|
||||||
|
#ifndef BUILD_WITH_MSVC /* was set to #if 1 by ./configure */
|
||||||
# define Z_HAVE_UNISTD_H
|
# define Z_HAVE_UNISTD_H
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user