mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-26 02:35:38 +08:00
Typo, style
This commit is contained in:
committed by
Mat Sutcliffe
parent
de4adda779
commit
0732c32922
@@ -900,7 +900,7 @@ namespace BlackCore
|
|||||||
}
|
}
|
||||||
else if (log)
|
else if (log)
|
||||||
{
|
{
|
||||||
CMatchingUtils::addLogDetailsToList(log, remoteAircraft, QStringLiteral("category matchig disabled"), getLogCategories());
|
CMatchingUtils::addLogDetailsToList(log, remoteAircraft, QStringLiteral("category matching disabled"), getLogCategories());
|
||||||
}
|
}
|
||||||
|
|
||||||
// if not yet reduced, reduce to VTOL
|
// if not yet reduced, reduce to VTOL
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ namespace BlackGui
|
|||||||
explicit CInstallXSwiftBusDialog(QWidget *parent = nullptr);
|
explicit CInstallXSwiftBusDialog(QWidget *parent = nullptr);
|
||||||
|
|
||||||
//! Dtor
|
//! Dtor
|
||||||
virtual ~CInstallXSwiftBusDialog();
|
virtual ~CInstallXSwiftBusDialog() override;
|
||||||
|
|
||||||
//! \copydoc CInstallXSwiftBusComponent::setDefaultDownloadName
|
//! \copydoc CInstallXSwiftBusComponent::setDefaultDownloadName
|
||||||
void setDefaultDownloadName(const QString &defaultName);
|
void setDefaultDownloadName(const QString &defaultName);
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ namespace BlackGui
|
|||||||
explicit CSettingsSimulatorBasicsComponent(QWidget *parent = nullptr);
|
explicit CSettingsSimulatorBasicsComponent(QWidget *parent = nullptr);
|
||||||
|
|
||||||
//! Destructor
|
//! Destructor
|
||||||
virtual ~CSettingsSimulatorBasicsComponent();
|
virtual ~CSettingsSimulatorBasicsComponent() override;
|
||||||
|
|
||||||
//! Show / hide selector
|
//! Show / hide selector
|
||||||
void hideSelector(bool show);
|
void hideSelector(bool show);
|
||||||
|
|||||||
@@ -401,7 +401,7 @@ namespace BlackGui
|
|||||||
void hideLoadIndicator(int loadingId = -1);
|
void hideLoadIndicator(int loadingId = -1);
|
||||||
|
|
||||||
//! Parameterless version of hideLoadIndicator
|
//! Parameterless version of hideLoadIndicator
|
||||||
void hideLoacIndicatorForced() { this->hideLoadIndicator(); }
|
void hideLoadIndicatorForced() { this->hideLoadIndicator(); }
|
||||||
|
|
||||||
//! Remove selected rows
|
//! Remove selected rows
|
||||||
virtual int removeSelectedRows() = 0;
|
virtual int removeSelectedRows() = 0;
|
||||||
|
|||||||
@@ -338,7 +338,7 @@ namespace BlackGui
|
|||||||
if (m_showingLoadIndicator)
|
if (m_showingLoadIndicator)
|
||||||
{
|
{
|
||||||
// just in case, if this ever will be dangling
|
// just in case, if this ever will be dangling
|
||||||
menuActions.addAction(CIcons::preloader16(), "Hide load indicator", CMenuAction::pathViewUpdates(), nullptr, { this, &CViewBaseNonTemplate::hideLoacIndicatorForced });
|
menuActions.addAction(CIcons::preloader16(), "Hide load indicator", CMenuAction::pathViewUpdates(), nullptr, { this, &CViewBaseNonTemplate::hideLoadIndicatorForced });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_menus.testFlag(MenuClear)) { menuActions.addActions(this->initMenuActions(MenuClear)); }
|
if (m_menus.testFlag(MenuClear)) { menuActions.addActions(this->initMenuActions(MenuClear)); }
|
||||||
|
|||||||
Reference in New Issue
Block a user