Misc: removed redundant default value (settings), formatting, hide kill button

This commit is contained in:
Klaus Basan
2017-04-10 16:35:03 +02:00
committed by Mathew Sutcliffe
parent 78c618e589
commit 2d56167e65
5 changed files with 8 additions and 12 deletions

View File

@@ -29,8 +29,7 @@ namespace BlackGui
namespace Components
{
//! Audio setup such as input / output devices
class BLACKGUI_EXPORT CAudioSetupComponent :
public QFrame
class BLACKGUI_EXPORT CAudioSetupComponent : public QFrame
{
Q_OBJECT
@@ -73,7 +72,6 @@ namespace BlackGui
QScopedPointer<Ui::CAudioSetupComponent> ui;
BlackMisc::CSetting<BlackCore::Audio::TSettings> m_audioSettings { this, &CAudioSetupComponent::ps_reloadSettings };
};
} // namespace
} // namespace

View File

@@ -9,8 +9,8 @@
//! \file
#ifndef BLACKGUI_FLIGHTPLANCOMPONENT_H
#define BLACKGUI_FLIGHTPLANCOMPONENT_H
#ifndef BLACKGUI_COMPONENTS_FLIGHTPLANCOMPONENT_H
#define BLACKGUI_COMPONENTS_FLIGHTPLANCOMPONENT_H
#include "blackgui/blackguiexport.h"
#include "blackmisc/aviation/flightplan.h"
@@ -29,7 +29,6 @@ class QWidget;
namespace BlackMisc { namespace Simulation { class CSimulatedAircraft; } }
namespace Ui { class CFlightPlanComponent; }
namespace BlackGui
{
namespace Components