mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-03 15:45:46 +08:00
refs #768, renamed flag name to better represent its meaning
This commit is contained in:
@@ -284,10 +284,10 @@ namespace BlackGui
|
||||
}
|
||||
}
|
||||
|
||||
void CDbStashComponent::ps_publishedModelsResponse(const CAircraftModelList &publishedModels, const CAircraftModelList &skippedModels, const CStatusMessageList &msgs, bool success, bool directWrite)
|
||||
void CDbStashComponent::ps_publishedModelsResponse(const CAircraftModelList &publishedModels, const CAircraftModelList &skippedModels, const CStatusMessageList &msgs, bool sendingSuccesful, bool directWrite)
|
||||
{
|
||||
ui->tvp_StashAircraftModels->hideLoadIndicator();
|
||||
if (!publishedModels.isEmpty() && success)
|
||||
if (!publishedModels.isEmpty() && sendingSuccesful)
|
||||
{
|
||||
emit this->modelsSuccessfullyPublished(publishedModels, directWrite);
|
||||
}
|
||||
|
||||
@@ -154,7 +154,7 @@ namespace BlackGui
|
||||
//! Publish response received
|
||||
void ps_publishedModelsResponse(const BlackMisc::Simulation::CAircraftModelList &publishedModels,
|
||||
const BlackMisc::Simulation::CAircraftModelList &skippedModels,
|
||||
const BlackMisc::CStatusMessageList &msgs, bool success, bool directWrite);
|
||||
const BlackMisc::CStatusMessageList &msgs, bool sendingSuccesful, bool directWrite);
|
||||
|
||||
//! Copy over values
|
||||
void ps_copyOverPartsToSelected();
|
||||
|
||||
Reference in New Issue
Block a user