mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 00:16:51 +08:00
Ref T239, removed "QTimer m_xxx { this };" pattern
* not in worker classes as parent might have a relevance there * in UI classes it is useless
This commit is contained in:
@@ -163,7 +163,7 @@ namespace BlackSimPlugin
|
||||
bool m_timeSyncronized = false;
|
||||
int m_countInterpolatedSituations = 0;
|
||||
int m_countInterpolatedParts = 0;
|
||||
QTimer m_interpolatorFetchTimer { this }; //!< fetch data from interpolator
|
||||
QTimer m_interpolatorFetchTimer; //!< fetch data from interpolator
|
||||
BlackMisc::PhysicalQuantities::CTime m_offsetTime;
|
||||
BlackMisc::Simulation::CSimulatedAircraft m_myAircraft; //!< represents own aircraft of simulator
|
||||
BlackMisc::Simulation::CSimulatedAircraftList m_renderedAircraft; //!< represents remote aircraft in simulator
|
||||
|
||||
@@ -107,7 +107,7 @@ namespace BlackSimPlugin
|
||||
|
||||
QScopedPointer<Ui::CSimulatorEmulatedMonitorDialog> ui;
|
||||
CSimulatorEmulated *m_simulator = nullptr;
|
||||
QTimer m_uiUpdateTimer { this };
|
||||
QTimer m_uiUpdateTimer;
|
||||
};
|
||||
} // ns
|
||||
} // ns
|
||||
|
||||
Reference in New Issue
Block a user