Skip to content

Commit

Permalink
RC5
Browse files Browse the repository at this point in the history
  • Loading branch information
ea4k committed May 12, 2023
1 parent 59a5a11 commit b9cf8e2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Finnish - Kristjan Lorents (debian-i18n@lists.debian.org)
French - Christophe, F4HWL
Italian - Simona - IU5HIU
Japanese - Nick, JJ1TGT, Aki, JL3OXR
Latvian - Arnis Armans, YL3GBV
Latvian - Arnis Armans, YL3GBC
Polish - Piotr, LA7RRA
Spanish - Jaime, EA4K

4 changes: 2 additions & 2 deletions src/dataproxy_sqlite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3525,7 +3525,7 @@ int DataProxy_SQLite::lotwUpdateQSLReception (const QString &_call, const QDateT

QList<int> DataProxy_SQLite::getQSOsListLoTWToSend(const QString &_stationCallsign, const QString &_myGrid, const QDate &_startDate, const QDate &_endDate, bool _justQueued, int _logN)
{
qDebug() << "DataProxy_SQLite::getQSOsListLoTWToSend Call/Start/end: " << _stationCallsign << _myGrid << _startDate.toString("yyyyMMdd") << "/" << _endDate.toString("yyyyMMdd");
//qDebug() << "DataProxy_SQLite::getQSOsListLoTWToSend Call/Start/end: " << _stationCallsign << _myGrid << _startDate.toString("yyyyMMdd") << "/" << _endDate.toString("yyyyMMdd");

QList <int> qsoList;
qsoList.clear();
Expand Down Expand Up @@ -3594,7 +3594,7 @@ QList<int> DataProxy_SQLite::getQSOsListLoTWToSend(const QString &_stationCallsi

QSqlQuery query;
bool sqlOK = query.exec(queryString);
qDebug() << "DataProxy_SQLite::getQSOsListLoTWToSend Query: " << query.lastQuery() ;
//qDebug() << "DataProxy_SQLite::getQSOsListLoTWToSend Query: " << query.lastQuery() ;

if (sqlOK)
{
Expand Down
6 changes: 3 additions & 3 deletions src/inputwidgets/mainwindowsattab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ void MainWindowSatTab::slotSatBandTXComboBoxChanged()
}

autofillSatMode();
qDebug() << Q_FUNC_INFO << " - END" ;
//qDebug() << Q_FUNC_INFO << " - END" ;
}

void MainWindowSatTab::setUpLink(const QString &_t)
Expand Down Expand Up @@ -586,14 +586,14 @@ void MainWindowSatTab::setUpLink(const QString &_t)

void MainWindowSatTab::setUpLinkFreq(const double _t)
{
qDebug() << Q_FUNC_INFO << ": " << QString::number(_t);
//qDebug() << Q_FUNC_INFO << ": " << QString::number(_t);
if (!updatingSat)
{
setNoSat ();
}
updateTXFreq(_t);
setUpLink(dataProxy->getBandNameFromFreq(_t));
qDebug() << Q_FUNC_INFO << "END";
//qDebug() << Q_FUNC_INFO << "END";
}

double MainWindowSatTab::getRXFreq()
Expand Down
2 changes: 1 addition & 1 deletion src/src.pro
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ CONFIG -=depend_includepath
#CONFIG += release
TEMPLATE = app

PKGVERSION = 2.3.1-RC.4
PKGVERSION = 2.3.1-RC.5
VERSION = 2.3.1
DEFINES += APP_VERSION=\\\"$$VERSION\\\"

Expand Down
2 changes: 1 addition & 1 deletion src/widgets/adiflotwexportwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ QList<int> AdifLoTWExportWidget::fillTable()

void AdifLoTWExportWidget::addQSO(const int _qsoID)
{
qDebug() << "AdifLoTWExportWidget::addQSO: " << QString::number(_qsoID);
//qDebug() << "AdifLoTWExportWidget::addQSO: " << QString::number(_qsoID);

//qDebug() << Q_FUNC_INFO << " - Start";
QStringList qsoToAdd;
Expand Down

0 comments on commit b9cf8e2

Please sign in to comment.