mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-29 04:42:28 -04:00
Boost all message letters to upper case, even if tx6 editing is not 'finished'.
This commit is contained in:
parent
ba83ae0587
commit
cabd6bc869
@ -4013,6 +4013,7 @@ void MainWindow::ba2msg(QByteArray ba, char message[]) //ba2msg()
|
|||||||
int iz=ba.length();
|
int iz=ba.length();
|
||||||
for(int i=0; i<37; i++) {
|
for(int i=0; i<37; i++) {
|
||||||
if(i<iz) {
|
if(i<iz) {
|
||||||
|
if(int(ba[i])>=97 and int(ba[i])<=122) ba[i]=int(ba[i])-32;
|
||||||
message[i]=ba[i];
|
message[i]=ba[i];
|
||||||
} else {
|
} else {
|
||||||
message[i]=32;
|
message[i]=32;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user