mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-05-06 02:16:04 +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);
|
||||
|
||||
protected:
|
||||
//! \copydoc QWidget::showEvent()
|
||||
virtual void showEvent(QShowEvent *event) override;
|
||||
|
||||
};
|
||||
|
||||
@@ -48,6 +48,7 @@ namespace BlackGui
|
||||
void setPluginAuthors(const QString &authors);
|
||||
|
||||
protected:
|
||||
//! \copydoc QWidget::showEvent()
|
||||
virtual void showEvent(QShowEvent *event) override;
|
||||
|
||||
private:
|
||||
|
||||
@@ -43,8 +43,9 @@ namespace BlackGui
|
||||
explicit CPluginSelector(QWidget *parent = 0);
|
||||
|
||||
//! 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 hasConfig Defines whether the plugin has the corresponding config plugin 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);
|
||||
|
||||
|
||||
@@ -20,6 +20,9 @@ namespace BlackSimPlugin
|
||||
namespace Fsx
|
||||
{
|
||||
|
||||
/*!
|
||||
* Window for setting up the FSX plugin.
|
||||
*/
|
||||
class CSimulatorFsxConfig : public QObject, public BlackGui::IPluginConfig
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
@@ -19,6 +19,10 @@ namespace BlackSimPlugin
|
||||
{
|
||||
namespace XPlane
|
||||
{
|
||||
|
||||
/*!
|
||||
* Setting for XBus.
|
||||
*/
|
||||
struct XBusServer : public BlackCore::CSettingTrait<QString>
|
||||
{
|
||||
//! \copydoc BlackCore::CSetting::key
|
||||
@@ -28,7 +32,7 @@ namespace BlackSimPlugin
|
||||
static QString defaultValue() { return QStringLiteral("session"); }
|
||||
};
|
||||
|
||||
/**
|
||||
/*!
|
||||
* Config plugin for the X-Plane plugin.
|
||||
*/
|
||||
class CSimulatorXPlaneConfig : public QObject, public BlackGui::IPluginConfig
|
||||
|
||||
Reference in New Issue
Block a user