mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Windows build fix
This commit is contained in:
parent
9d6ac34025
commit
d6d6780cdc
@ -502,7 +502,7 @@ bool FPIconLoader::OpenFLW(Machine *mach, QString filename, Profile *profile)
|
||||
do {
|
||||
sit--;
|
||||
s1 = sit.value();
|
||||
qint64 z = qAbs(sit.key() - ts);
|
||||
qint64 z = qAbs(qint64(sit.key()) - qint64(ts));
|
||||
if (z < 3600) {
|
||||
if ((k < 0) || (k > z)) {
|
||||
k = z;
|
||||
|
@ -1251,10 +1251,6 @@ int ResmedLoader::Open(QString path, Profile *profile)
|
||||
for (it = strsess.begin(); it != end; ++it) {
|
||||
STRRecord & R = it.value();
|
||||
|
||||
if (R.date == QDate(2013,6,20)) {
|
||||
int i=5;
|
||||
}
|
||||
|
||||
if (ignoreold && (R.maskon < ignoreolder)) {
|
||||
m->skipSaveTask();
|
||||
continue;
|
||||
|
@ -135,10 +135,6 @@ void MachineLoader::runTasks(bool threaded)
|
||||
while (!m_tasklist.isEmpty()) {
|
||||
if (threadpool->tryStart(m_tasklist.at(0))) {
|
||||
m_tasklist.pop_front();
|
||||
if (m_tasklist.isEmpty()) {
|
||||
int i=5;
|
||||
}
|
||||
|
||||
float f = float(m_currenttask) / float(m_totaltasks) * 100.0;
|
||||
qprogress->setValue(f);
|
||||
m_currenttask++;
|
||||
|
@ -116,7 +116,7 @@ void LogThread::run()
|
||||
running = true;
|
||||
do {
|
||||
strlock.lock();
|
||||
int r = receivers(SIGNAL(outputLog(QString())));
|
||||
//int r = receivers(SIGNAL(outputLog(QString())));
|
||||
while (!buffer.isEmpty()) {
|
||||
QString msg = buffer.takeFirst();
|
||||
fprintf(stderr, "%s\n", msg.toLocal8Bit().data());
|
||||
|
@ -139,7 +139,7 @@ int main(int argc, char *argv[])
|
||||
#if defined(Q_OS_WIN)
|
||||
bool angle_supported = getGraphicsEngine().contains(CSTR_GFX_ANGLE, Qt::CaseInsensitive) && (QSysInfo::windowsVersion() >= QSysInfo::WV_VISTA);
|
||||
if (bad_graphics) {
|
||||
bad_graphics = !angle_supported
|
||||
bad_graphics = !angle_supported;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user