Skip to content

Commit

Permalink
Merge pull request #679 from ea5wa/master
Browse files Browse the repository at this point in the history
Closes #677 CQ Zone 0 when FO/x
  • Loading branch information
ea4k authored Feb 12, 2024
2 parents aaaf671 + acc9df2 commit b9998eb
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,7 @@ bool MainWindow::readQSOFromUI()

int dxcc = world->getQRZARRLId(tqrz);
//int dxcc2 = getDXCCFromComboBox();
int dxcc2 = world->getQRZARRLId(othersTabWidget->getEntityPrefix());
int dxcc2 = othersTabWidget->getEntity();

dxcc = util->getNormalizedDXCCValue (dxcc);
dxcc2 = util->getNormalizedDXCCValue (dxcc2);
Expand Down Expand Up @@ -1224,11 +1224,10 @@ bool MainWindow::readQSOFromUI()
}
}

qso->setContinent (dataProxy->getContinentShortNameFromEntity(dxcc));

int cqz = world->getQRZCqz(tqrz);
int cqz = world->getEntityCqz(dxcc);
int ituz = world->getEntityItuz(dxcc);

qso->setContinent (dataProxy->getContinentShortNameFromEntity(dxcc));
qso->setName (QSOTabWidget->getName());
qso->setDistance (infoWidget->getDistance ());
qso->setGridSquare (QSOTabWidget->getDXLocator());
Expand Down

0 comments on commit b9998eb

Please sign in to comment.