mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-14 08:01:49 -05:00
Fix the extraction-of-callsign error caused by movinf asterisk.
This commit is contained in:
parent
aa9cc8e885
commit
ae217cb2d9
@ -3488,7 +3488,7 @@ void MainWindow::ARRL_Digi_Display()
|
|||||||
void MainWindow::callSandP2(int n)
|
void MainWindow::callSandP2(int n)
|
||||||
{
|
{
|
||||||
if(m_ready2call[n]=="") return;
|
if(m_ready2call[n]=="") return;
|
||||||
QStringList w=m_ready2call[n].mid(2,-1).split(' ', SkipEmptyParts);
|
QStringList w=m_ready2call[n].split(' ', SkipEmptyParts);
|
||||||
m_deCall=w[0];
|
m_deCall=w[0];
|
||||||
m_deGrid=w[1];
|
m_deGrid=w[1];
|
||||||
m_bDoubleClicked=true; //### needed?
|
m_bDoubleClicked=true; //### needed?
|
||||||
|
Loading…
Reference in New Issue
Block a user