mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-08-04 08:06:29 +08:00
refs #800 Fixed some implicit conversion warnings.
This commit is contained in:
committed by
Klaus Basan
parent
461474e29d
commit
5791de6860
@@ -42,9 +42,9 @@ namespace BlackSample
|
||||
{
|
||||
// ATC stations
|
||||
QDateTime dtFrom = QDateTime::currentDateTimeUtc();
|
||||
QDateTime dtUntil = dtFrom.addSecs(60 * 60.0); // 1 hour
|
||||
QDateTime dtUntil = dtFrom.addSecs(60 * 60); // 1 hour
|
||||
QDateTime dtFrom2 = dtUntil;
|
||||
QDateTime dtUntil2 = dtUntil.addSecs(60 * 60.0);
|
||||
QDateTime dtUntil2 = dtUntil.addSecs(60 * 60);
|
||||
CFrequency freqEddmTwr(118.7, CFrequencyUnit::MHz());
|
||||
CCallsign callsignEddmTwr("eddm_twr");
|
||||
CCoordinateGeodetic geoPos =
|
||||
|
||||
Reference in New Issue
Block a user