mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-17 10:55:32 +08:00
Fix doxygen warnings
This commit is contained in:
committed by
Roland Winklmeier
parent
1b06e15b61
commit
5fc284cc36
@@ -28,6 +28,7 @@ namespace BlackGui
|
|||||||
explicit CPluginConfigWindow(QWidget *parent);
|
explicit CPluginConfigWindow(QWidget *parent);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
//! \copydoc QWidget::showEvent()
|
||||||
virtual void showEvent(QShowEvent *event) override;
|
virtual void showEvent(QShowEvent *event) override;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ namespace BlackGui
|
|||||||
void setPluginAuthors(const QString &authors);
|
void setPluginAuthors(const QString &authors);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
//! \copydoc QWidget::showEvent()
|
||||||
virtual void showEvent(QShowEvent *event) override;
|
virtual void showEvent(QShowEvent *event) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|||||||
@@ -43,8 +43,9 @@ namespace BlackGui
|
|||||||
explicit CPluginSelector(QWidget *parent = 0);
|
explicit CPluginSelector(QWidget *parent = 0);
|
||||||
|
|
||||||
//! Adds the new plugin to the list.
|
//! Adds the new plugin to the list.
|
||||||
//! \param identifier Identifier of the plugin.
|
//! \param identifier Identifier of the plugin
|
||||||
//! \param name Name of the plugin
|
//! \param name Name of the plugin
|
||||||
|
//! \param hasConfig Defines whether the plugin has the corresponding config plugin or not
|
||||||
//! \param enabled Defines whether the plugin is initially enabled or not
|
//! \param enabled Defines whether the plugin is initially enabled or not
|
||||||
void addPlugin(const QString &identifier, const QString &name, bool hasConfig = false, bool enabled = true);
|
void addPlugin(const QString &identifier, const QString &name, bool hasConfig = false, bool enabled = true);
|
||||||
|
|
||||||
|
|||||||
@@ -20,6 +20,9 @@ namespace BlackSimPlugin
|
|||||||
namespace Fsx
|
namespace Fsx
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* Window for setting up the FSX plugin.
|
||||||
|
*/
|
||||||
class CSimulatorFsxConfig : public QObject, public BlackGui::IPluginConfig
|
class CSimulatorFsxConfig : public QObject, public BlackGui::IPluginConfig
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|||||||
@@ -19,6 +19,10 @@ namespace BlackSimPlugin
|
|||||||
{
|
{
|
||||||
namespace XPlane
|
namespace XPlane
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* Setting for XBus.
|
||||||
|
*/
|
||||||
struct XBusServer : public BlackCore::CSettingTrait<QString>
|
struct XBusServer : public BlackCore::CSettingTrait<QString>
|
||||||
{
|
{
|
||||||
//! \copydoc BlackCore::CSetting::key
|
//! \copydoc BlackCore::CSetting::key
|
||||||
@@ -28,7 +32,7 @@ namespace BlackSimPlugin
|
|||||||
static QString defaultValue() { return QStringLiteral("session"); }
|
static QString defaultValue() { return QStringLiteral("session"); }
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/*!
|
||||||
* Config plugin for the X-Plane plugin.
|
* Config plugin for the X-Plane plugin.
|
||||||
*/
|
*/
|
||||||
class CSimulatorXPlaneConfig : public QObject, public BlackGui::IPluginConfig
|
class CSimulatorXPlaneConfig : public QObject, public BlackGui::IPluginConfig
|
||||||
|
|||||||
Reference in New Issue
Block a user