From c61d328300a826196ce92f95c1c944bd5a92d77c Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sat, 1 Jul 2017 13:37:29 +0000 Subject: [PATCH] Remove a qDebug() flagging posts to PSKreporter. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7758 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- CMakeLists.txt | 2 +- mainwindow.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 028ff31a7..17dc51e7b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -894,7 +894,7 @@ if (Fortran_COMPILER_NAME MATCHES "gfortran.*") set (CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -isysroot ${CMAKE_OSX_SYSROOT}") endif (CMAKE_OSX_SYSROOT) - set (CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -funroll-all-loops -fno-f2c ${General_FFLAGS}") + set (CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -fbounds-check -funroll-all-loops -fno-f2c ${General_FFLAGS}") set (CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -fbounds-check -fno-f2c ${General_FFLAGS}") elseif (Fortran_COMPILER_NAME MATCHES "ifort.*") # ifort (untested) diff --git a/mainwindow.cpp b/mainwindow.cpp index 4c8c28c74..e993d3111 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2775,7 +2775,7 @@ void MainWindow::pskPost(DecodedText decodedtext) Frequency frequency = m_freqNominal + audioFrequency; pskSetLocal (); if(grid_regexp.exactMatch (grid)) { - qDebug() << "To PSKreporter:" << deCall << grid << frequency << msgmode << snr; +// qDebug() << "To PSKreporter:" << deCall << grid << frequency << msgmode << snr; psk_Reporter->addRemoteStation(deCall,grid,QString::number(frequency),msgmode, QString::number(snr),QString::number(QDateTime::currentDateTime().toTime_t())); }