Fix doxygen warnings

This commit is contained in:
Michał Garapich
2015-11-22 16:49:53 +01:00
committed by Roland Winklmeier
parent 1b06e15b61
commit 5fc284cc36
5 changed files with 12 additions and 2 deletions

View File

@@ -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;
}; };

View File

@@ -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:

View File

@@ -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);

View File

@@ -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

View File

@@ -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