From d63dd249d8241e104b63c8ac50a769d21891ae2e Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Sat, 14 Apr 2018 20:35:19 +0000 Subject: [PATCH] Increment m_foxQSO[hc].ncall after sending a report. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8614 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 76ec9ed49..10d98cd60 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -7600,6 +7600,7 @@ list1Done: if((m_foxQSO[hc].tFoxRrpt < 0) and (m_foxQSO[hc].ncall < m_maxStrikes)) { //Sent him a report and have not received R+rpt: call him again list2 << hc; //Add to list2 + m_foxQSO[hc].ncall++; if(list2.size()==n2max) goto list2Done; } }