Formatting, doxygen, minor adjustments

This commit is contained in:
Klaus Basan
2016-12-26 00:32:28 +01:00
committed by Mathew Sutcliffe
parent 5d5da0641f
commit deed61a88c
8 changed files with 9 additions and 12 deletions

View File

@@ -459,9 +459,9 @@ namespace BlackGui
this->m_modelModifyDialog->setValue(ui->comp_StashAircraft->view()->selectedObject());
}
QDialog::DialogCode s = static_cast<QDialog::DialogCode>(this->m_modelModifyDialog->exec());
const QDialog::DialogCode s = static_cast<QDialog::DialogCode>(this->m_modelModifyDialog->exec());
if (s == QDialog::Rejected) { return; }
CPropertyIndexVariantMap vm = this->m_modelModifyDialog->getValues();
const CPropertyIndexVariantMap vm = this->m_modelModifyDialog->getValues();
ui->comp_StashAircraft->applyToSelected(vm);
}

View File

@@ -27,7 +27,6 @@
class QWidget;
namespace Ui { class CDbModelComponent; }
namespace BlackGui
{
namespace Components

View File

@@ -42,7 +42,7 @@ namespace BlackGui
class CWeatherComponent;
//! Main info area
//! Main info area of pilot client
class BLACKGUI_EXPORT CMainInfoAreaComponent : public BlackGui::CInfoArea
{
Q_OBJECT