mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 13:30:52 -05:00 
			
		
		
		
	Qt 5.15 compatibility
This commit is contained in:
		
							parent
							
								
									899a7fd895
								
							
						
					
					
						commit
						10f574a1ec
					
				@ -3378,9 +3378,7 @@ void MainWindow::readFromStdout()                             //readFromStdout
 | 
			
		||||
      int n0=n2/1000;
 | 
			
		||||
      int n1=n2%1000;
 | 
			
		||||
      if(m_mode=="Q65") {
 | 
			
		||||
        QString t;
 | 
			
		||||
        t.sprintf("%d  %d",n0,n1);
 | 
			
		||||
        ndecodes_label.setText(t);
 | 
			
		||||
        ndecodes_label.setText(QString {"%1  %2"}.arg (n0).arg (n1));
 | 
			
		||||
      } else {
 | 
			
		||||
        if(m_nDecodes==0) ndecodes_label.setText("0");
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user