Fixed clazy warnings: fully-qualified signal parameter types.

This commit is contained in:
Mat Sutcliffe
2018-12-17 16:45:04 +00:00
parent 9f85a7b560
commit e32ea65a27
9 changed files with 17 additions and 17 deletions

View File

@@ -132,15 +132,15 @@ namespace BlackMisc
signals:
//! Disk loading started
//! \remark will only indicate loading from disk, not cache loading
void diskLoadingStarted(const CSimulatorInfo &simulator, LoadMode loadMode);
void diskLoadingStarted(const BlackMisc::Simulation::CSimulatorInfo &simulator, BlackMisc::Simulation::IAircraftModelLoader::LoadMode loadMode);
//! Parsing is finished or cache has been loaded
//! \remark does to fire if the cache has been changed elsewhere and it has just been reloaded here!
void loadingFinished(const CStatusMessageList &status, const CSimulatorInfo &simulator, LoadFinishedInfo info);
void loadingFinished(const BlackMisc::CStatusMessageList &status, const BlackMisc::Simulation::CSimulatorInfo &simulator, BlackMisc::Simulation::IAircraftModelLoader::LoadFinishedInfo info);
//! Relayed from centralized caches
//! \remark this can result from loading, the cache changed elsewhere or clearing data
void cacheChanged(const CSimulatorInfo &simulator);
void cacheChanged(const BlackMisc::Simulation::CSimulatorInfo &simulator);
protected:
//! Constructor
@@ -219,13 +219,13 @@ namespace BlackMisc
signals:
//! \copydoc IAircraftModelLoader::loadingFinished
void loadingFinished(const CStatusMessageList &status, const CSimulatorInfo &simulator, IAircraftModelLoader::LoadFinishedInfo info);
void loadingFinished(const BlackMisc::CStatusMessageList &status, const BlackMisc::Simulation::CSimulatorInfo &simulator, BlackMisc::Simulation::IAircraftModelLoader::LoadFinishedInfo info);
//! \copydoc IAircraftModelLoader::diskLoadingStarted
void diskLoadingStarted(const CSimulatorInfo &simulator, IAircraftModelLoader::LoadMode mode);
void diskLoadingStarted(const BlackMisc::Simulation::CSimulatorInfo &simulator, BlackMisc::Simulation::IAircraftModelLoader::LoadMode mode);
//! \copydoc IAircraftModelLoader::cacheChanged
void cacheChanged(const CSimulatorInfo &simulator);
void cacheChanged(const BlackMisc::Simulation::CSimulatorInfo &simulator);
private:
IAircraftModelLoader *m_loaderFsx = nullptr;

View File

@@ -277,7 +277,7 @@ namespace BlackMisc
signals:
//! Cache has been changed
//! \note this detects caches changed elsewhere or set here (the normal caches detect only "elsewhere"
void cacheChanged(const CSimulatorInfo &simulator);
void cacheChanged(const BlackMisc::Simulation::CSimulatorInfo &simulator);
protected:
//! Construtor

View File

@@ -341,7 +341,7 @@ namespace BlackMisc
signals:
//! Simulator settings have been changed
void settingsChanged(const CSimulatorInfo &simulator);
void settingsChanged(const BlackMisc::Simulation::CSimulatorInfo &simulator);
private:
CSetting<Settings::TSimulatorFsx> m_simSettingsFsx { this, &CMultiSimulatorSettings::onFsxSettingsChanged }; //!< FSX settings