From c1b4137857d5a9ad181d4b648fdb3a0d1a8c7db3 Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Wed, 28 Aug 2019 16:31:56 -0700 Subject: [PATCH] Remove some qDebug statements that aren't needed. --- oscar/mainwindow.cpp | 2 +- oscar/welcome.cpp | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index eb00da80..9bdbda9e 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -533,7 +533,7 @@ bool MainWindow::OpenProfile(QString profileName, bool skippassword) QList posmachines = p_profile->GetMachines(MT_POSITION); QList stgmachines = p_profile->GetMachines(MT_SLEEPSTAGE); bool noMachines = machines.isEmpty() && posmachines.isEmpty() && oximachines.isEmpty() && stgmachines.isEmpty(); - qDebug() << "OpenProfile: noMachines" << noMachines; + ui->importButton->setDisabled(false); ui->oximetryButton->setDisabled(false); ui->dailyButton->setDisabled(noMachines); diff --git a/oscar/welcome.cpp b/oscar/welcome.cpp index 83ff2d63..ad1da694 100644 --- a/oscar/welcome.cpp +++ b/oscar/welcome.cpp @@ -61,8 +61,6 @@ void Welcome::refreshPage() b = !noMachines; - qDebug() << "Welcome::refreshPae b =" << b << "noMachines" << noMachines; - // Copy application font to tool buttons ui->importButton->setFont(QApplication::font()); ui->dailyButton->setFont(QApplication::font());