mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-20 02:52:00 -05:00
Correct an error in ba2msg().
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@2743 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
b8f6e88604
commit
be6b691ed7
@ -114,6 +114,8 @@ MainWindow::MainWindow(QWidget *parent) :
|
||||
m_dataAvailable=false;
|
||||
decodeBusy(false);
|
||||
|
||||
qDebug() << "AA";
|
||||
|
||||
ui->xThermo->setFillBrush(Qt::green);
|
||||
PaError paerr=Pa_Initialize(); //Initialize Portaudio
|
||||
if(paerr!=paNoError) {
|
||||
@ -1048,7 +1050,8 @@ void MainWindow::ba2msg(QByteArray ba, char message[]) //ba2msg()
|
||||
{
|
||||
bool eom;
|
||||
eom=false;
|
||||
for(int i=0;i<28; i++) {
|
||||
int iz=ba.length();
|
||||
for(int i=0;i<iz; i++) {
|
||||
if((int)ba[i] == 0) eom=true;
|
||||
if(eom) {
|
||||
message[i]=32;
|
||||
@ -1310,12 +1313,11 @@ void MainWindow::on_addButton_clicked() //Add button
|
||||
|
||||
void MainWindow::msgtype(QString t, QLineEdit* tx) //msgtype()
|
||||
{
|
||||
#ifdef WIN32
|
||||
// Needs work for compiling in Linux
|
||||
|
||||
char message[23];
|
||||
char msgsent[23];
|
||||
int len1=22;
|
||||
int jtone[1];
|
||||
int jtone[85];
|
||||
int nsendingsh=0;
|
||||
t=t.toUpper();
|
||||
int i1=t.indexOf(" OOO");
|
||||
@ -1344,7 +1346,6 @@ void MainWindow::msgtype(QString t, QLineEdit* tx) //msgtype()
|
||||
} else {
|
||||
tx->setText(t);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void MainWindow::on_tx1_editingFinished() //tx1 edited
|
||||
|
Loading…
Reference in New Issue
Block a user