Skip to content

Commit

Permalink
Fixed compilation issue under Windows; Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed Mar 5, 2022
1 parent e0a61b1 commit 7bb41e5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/Wsjtx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void Wsjtx::forwardDatagram(const QNetworkDatagram &datagram)
bool isPortOK = false;
uint port = addressPort.at(1).toUInt(&isPortOK);

if ( isPortOK and port < 65536 )
if ( isPortOK && port < 65536 )
{
QUdpSocket udpSocket(this);
qCDebug(runtime) << "Sending to " << address;
Expand Down
Binary file modified i18n/qlog_cs.qm
Binary file not shown.
2 changes: 1 addition & 1 deletion i18n/qlog_cs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2991,7 +2991,7 @@
<location filename="../ui/PaperQSLDialog.ui" line="37"/>
<location filename="../ui/PaperQSLDialog.cpp" line="42"/>
<source>Add File</source>
<translation>Pridat</translation>
<translation>Přidat</translation>
</message>
<message>
<location filename="../ui/PaperQSLDialog.cpp" line="89"/>
Expand Down

0 comments on commit 7bb41e5

Please sign in to comment.