Skip to content

Commit f19362b

Browse files
committed
removed the time marker
1 parent 6519876 commit f19362b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/mainwindow.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ MainWindow::MainWindow(DataProxy_SQLite *dp):
5555
//util->setVersion(softwareVersion);
5656
//qDebug() << Q_FUNC_INFO << " - Creating qso - ";
5757
qso = new QSO;
58-
QThread::sleep(std::chrono::microseconds{1000});
58+
//QThread::sleep(std::chrono::microseconds{1000});
5959
//qDebug() << Q_FUNC_INFO << " - Creating backupQSO - ";
6060
backupQSO = new QSO;
61-
QThread::sleep(std::chrono::microseconds{1000});
61+
//QThread::sleep(std::chrono::microseconds{1000});
6262
//qDebug() << Q_FUNC_INFO << " - Creating modifyingQSO - ";
6363
//modifyingQSO = new QSO;
6464

src/qso.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
QSO::QSO(QObject *parent)
3232
: QObject(parent)
3333
{
34-
startT = QTime::currentTime();
34+
//startT = QTime::currentTime();
3535
//qDebug() << Q_FUNC_INFO << " - " << startT.msec();
3636
logLevel = None;
3737
qsoId = -1;
@@ -44,7 +44,7 @@ QSO::QSO(QObject *parent)
4444
QSO::QSO(const QSO &other)
4545
: QObject(other.parent())
4646
{
47-
startT = QTime::currentTime();
47+
//startT = QTime::currentTime();
4848
//qDebug() << Q_FUNC_INFO << " - " << startT.msec();
4949
//qDebug() << Q_FUNC_INFO << " (2): " << other.callsign;
5050
util = new Utilities(Q_FUNC_INFO);

src/qso.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ class QSO : public QObject
427427
void queryError(QString functionFailed, QString errorCodeS, QString nativeError, QString failedQuery); // To alert about any failed query execution
428428

429429
private:
430-
QTime startT;
430+
//QTime startT;
431431
bool isValidCall() const;
432432
bool isValidBand() const;
433433
bool isValidMode() const;

0 commit comments

Comments
 (0)