mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 21:40:52 -05:00 
			
		
		
		
	Fix the handling of ActiveStation line with pre-pended asterisk.
This commit is contained in:
		
							parent
							
								
									653ea56a77
								
							
						
					
					
						commit
						07ab7de018
					
				@ -3485,7 +3485,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].split(' ', SkipEmptyParts);
 | 
					  QStringList w=m_ready2call[n].mid(2,-1).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…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user