Cleanup some unused variable, Qt4 build fix

This commit is contained in:
Mark Watkins 2014-04-17 14:56:04 +10:00
parent 80defa6186
commit 7ce407f6e9
10 changed files with 11 additions and 29 deletions

View File

@ -68,9 +68,6 @@ void gLineChart::SetDay(Day *d)
for (int i=0;i<d->size();i++) { for (int i=0;i<d->size();i++) {
Session *sess=d->getSessions()[i]; Session *sess=d->getSessions()[i];
if (!sess->channelExists(code)) continue; if (!sess->channelExists(code)) continue;
if (code==CPAP_FLG) {
int i=5;
}
if (first) { if (first) {
m_miny=sess->Min(code); m_miny=sess->Min(code);
m_maxy=sess->Max(code); m_maxy=sess->Max(code);
@ -132,10 +129,6 @@ EventDataType gLineChart::Maxy()
// Time Domain Line Chart // Time Domain Line Chart
void gLineChart::paint(gGraph & w,int left, int top, int width, int height) void gLineChart::paint(gGraph & w,int left, int top, int width, int height)
{ {
if (w.title()=="Flow Limit") {
int i=5;
}
if (!m_visible) if (!m_visible)
return; return;

View File

@ -756,6 +756,6 @@ qint64 Day::last()
void Day::removeSession(Session * sess) void Day::removeSession(Session * sess)
{ {
if (sessions.removeAll(sess)<1) { if (sessions.removeAll(sess)<1) {
int i=5; // int i=5;
} }
} }

View File

@ -168,8 +168,8 @@ int FPIconLoader::OpenMachine(Machine *mach, QString & path, Profile * profile)
for (int i=0;i<flw.size();i++) { for (int i=0;i<flw.size();i++) {
OpenFLW(mach,flw[i],profile); OpenFLW(mach,flw[i],profile);
} }
SessionID zz,sid;//,st; SessionID sid;//,st;
float hours,dur,mins; float hours,mins;
qDebug() << "Last 20 Sessions"; qDebug() << "Last 20 Sessions";
@ -379,7 +379,6 @@ bool FPIconLoader::OpenFLW(Machine * mach,QString filename, Profile * profile)
} }
ti=qint64(ts)*1000L; ti=qint64(ts)*1000L;
qint64 st=ti;
EventStoreType pbuf[256]; EventStoreType pbuf[256];
@ -437,8 +436,6 @@ bool FPIconLoader::OpenFLW(Machine * mach,QString filename, Profile * profile)
EventDataType val; EventDataType val;
qint16 tmp; qint16 tmp;
bool corrupt=false;
do { do {
quint8 * p=buf; quint8 * p=buf;
// Scan ahead looking for end of block, marked by ff ff // Scan ahead looking for end of block, marked by ff ff

View File

@ -25,9 +25,9 @@
const int PRS1_MAGIC_NUMBER=2; const int PRS1_MAGIC_NUMBER=2;
const int PRS1_SUMMARY_FILE=1; //const int PRS1_SUMMARY_FILE=1;
const int PRS1_EVENT_FILE=2; //const int PRS1_EVENT_FILE=2;
const int PRS1_WAVEFORM_FILE=5; //const int PRS1_WAVEFORM_FILE=5;
//******************************************************************************************** //********************************************************************************************

View File

@ -79,7 +79,7 @@ EDFParser::~EDFParser()
} }
qint16 EDFParser::Read16() qint16 EDFParser::Read16()
{ {
if ((pos + sizeof(qint16)) > filesize) if ((pos + long(sizeof(qint16))) > filesize)
return 0; return 0;
qint16 res = *(qint16 *)&buffer[pos]; qint16 res = *(qint16 *)&buffer[pos];
@ -1237,9 +1237,6 @@ int ResmedLoader::Open(QString & path,Profile *profile)
dif=sess->first()-stredf.startdate; dif=sess->first()-stredf.startdate;
dn=dif/86400000L; dn=dif/86400000L;
if (dn>=days-2) {
int i=5;
}
if ((dn>=0) && (dn<days)) { if ((dn>=0) && (dn<days)) {
sig=stredf.lookupSignal(CPAP_Mode); sig=stredf.lookupSignal(CPAP_Mode);
if (sig) { if (sig) {
@ -1260,7 +1257,6 @@ int ResmedLoader::Open(QString & path,Profile *profile)
// Kaart's data has -1 here.. Not sure what it means. // Kaart's data has -1 here.. Not sure what it means.
prmode=0; prmode=0;
} else if (prmode > sig->physical_maximum) { } else if (prmode > sig->physical_maximum) {
int i=5;
prmode=sig->physical_maximum; prmode=sig->physical_maximum;
} }
// My VPAP (using EasyBreathe) and JM's Elite (using none) have 0 // My VPAP (using EasyBreathe) and JM's Elite (using none) have 0
@ -1963,9 +1959,6 @@ void ResmedLoader::ToTimeDelta(Session *sess,EDFParser &edf, EDFSignal & es, Cha
} }
} }
tmp=EventDataType(c) * es.gain; tmp=EventDataType(c) * es.gain;
if (tmp<0) {
int i=5;
}
if ((tmp >= t_min) && (tmp <= t_max)) { if ((tmp >= t_min) && (tmp <= t_max)) {
if (tmp < min) if (tmp < min)
min=tmp; min=tmp;

View File

@ -243,7 +243,7 @@ bool Machine::Purge(int secret)
return true; return true;
} }
const quint32 channel_version=1; //const quint32 channel_version=1;
bool Machine::Load() bool Machine::Load()

View File

@ -46,8 +46,6 @@
//extern QProgressBar *qprogress; //extern QProgressBar *qprogress;
extern MainWindow * mainwin; extern MainWindow * mainwin;
const int min_height=150;
Daily::Daily(QWidget *parent,gGraphView * shared) Daily::Daily(QWidget *parent,gGraphView * shared)
:QWidget(parent), ui(new Ui::Daily) :QWidget(parent), ui(new Ui::Daily)
{ {

View File

@ -13,6 +13,7 @@
#define NEWPROFILE_H #define NEWPROFILE_H
#include <QDialog> #include <QDialog>
#include <QUrl>
namespace Ui { namespace Ui {
class NewProfile; class NewProfile;

View File

@ -806,7 +806,7 @@ void PreferencesDialog::on_resetGraphButton_clicked()
continue; continue;
// Iterate over all contained graphs. // Iterate over all contained graphs.
for (unsigned i = 0; i < view->size(); i++) { for (int i = 0; i < view->size(); i++) {
gGraph *g = (*view)[i]; gGraph *g = (*view)[i];
g->setRecMaxY(0); // FIXME: should be g->reset(), but need other patches to land. g->setRecMaxY(0); // FIXME: should be g->reset(), but need other patches to land.
g->setRecMinY(0); g->setRecMinY(0);

View File

@ -201,7 +201,7 @@ void SessionBar::paintEvent(QPaintEvent *)
int len=L/1000L; int len=L/1000L;
int h=len/3600; int h=len/3600;
int m=(len/60) % 60; int m=(len/60) % 60;
int s=len % 60; //int s=len % 60;
QString msg=QString("%1h %2m").arg((short)h,1,10,QChar('0')).arg((short)m,1,10,QChar('0'));//.arg((short)s,2,10,QChar('0')); QString msg=QString("%1h %2m").arg((short)h,1,10,QChar('0')).arg((short)m,1,10,QChar('0'));//.arg((short)s,2,10,QChar('0'));
//painter.setBrush(QBrush((*i).color); //painter.setBrush(QBrush((*i).color);