mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-30 20:15:35 +08:00
Style
This commit is contained in:
committed by
Mat Sutcliffe
parent
7304013eea
commit
e7875c3af8
@@ -147,10 +147,10 @@ namespace BlackWxPlugin
|
||||
if (m_parseGribFileWorker && !m_parseGribFileWorker->isFinished()) { m_parseGribFileWorker->abandonAndWait(); }
|
||||
}
|
||||
|
||||
void CWeatherDataGfs::fetchWeatherData(const CWeatherGrid &grid, const CLength &range)
|
||||
void CWeatherDataGfs::fetchWeatherData(const CWeatherGrid &initialGrid, const CLength &range)
|
||||
{
|
||||
if (!sApp || sApp->isShuttingDown()) { return; }
|
||||
m_grid = grid;
|
||||
m_grid = initialGrid;
|
||||
m_maxRange = range;
|
||||
if (m_gribData.isEmpty())
|
||||
{
|
||||
|
||||
@@ -50,7 +50,7 @@ namespace BlackWxPlugin
|
||||
virtual ~CWeatherDataGfs() override;
|
||||
|
||||
//! \copydoc BlackCore::IWeatherData::fetchWeatherData
|
||||
virtual void fetchWeatherData(const BlackMisc::Weather::CWeatherGrid &grid,
|
||||
virtual void fetchWeatherData(const BlackMisc::Weather::CWeatherGrid &initialGrid,
|
||||
const BlackMisc::PhysicalQuantities::CLength &range) override;
|
||||
|
||||
//! \copydoc BlackCore::IWeatherData::fetchWeatherDataFromFile
|
||||
|
||||
Reference in New Issue
Block a user