From 5fc284cc365d977a25939e60d9e92c583d4bf463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Garapich?= Date: Sun, 22 Nov 2015 16:49:53 +0100 Subject: [PATCH] Fix doxygen warnings --- src/blackgui/pluginconfigwindow.h | 1 + src/blackgui/plugindetailswindow.h | 1 + src/blackgui/pluginselector.h | 3 ++- src/plugins/simulator/fsx_config/simulatorfsxconfig.h | 3 +++ src/plugins/simulator/xplane_config/simulatorxplaneconfig.h | 6 +++++- 5 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/blackgui/pluginconfigwindow.h b/src/blackgui/pluginconfigwindow.h index 4d4c0af3d..a90bb195c 100644 --- a/src/blackgui/pluginconfigwindow.h +++ b/src/blackgui/pluginconfigwindow.h @@ -28,6 +28,7 @@ namespace BlackGui explicit CPluginConfigWindow(QWidget *parent); protected: + //! \copydoc QWidget::showEvent() virtual void showEvent(QShowEvent *event) override; }; diff --git a/src/blackgui/plugindetailswindow.h b/src/blackgui/plugindetailswindow.h index 44a5425d6..3165102ed 100644 --- a/src/blackgui/plugindetailswindow.h +++ b/src/blackgui/plugindetailswindow.h @@ -48,6 +48,7 @@ namespace BlackGui void setPluginAuthors(const QString &authors); protected: + //! \copydoc QWidget::showEvent() virtual void showEvent(QShowEvent *event) override; private: diff --git a/src/blackgui/pluginselector.h b/src/blackgui/pluginselector.h index d908c1458..5214d0a4e 100644 --- a/src/blackgui/pluginselector.h +++ b/src/blackgui/pluginselector.h @@ -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); diff --git a/src/plugins/simulator/fsx_config/simulatorfsxconfig.h b/src/plugins/simulator/fsx_config/simulatorfsxconfig.h index d6af482d6..8eae73b05 100644 --- a/src/plugins/simulator/fsx_config/simulatorfsxconfig.h +++ b/src/plugins/simulator/fsx_config/simulatorfsxconfig.h @@ -20,6 +20,9 @@ namespace BlackSimPlugin namespace Fsx { + /*! + * Window for setting up the FSX plugin. + */ class CSimulatorFsxConfig : public QObject, public BlackGui::IPluginConfig { Q_OBJECT diff --git a/src/plugins/simulator/xplane_config/simulatorxplaneconfig.h b/src/plugins/simulator/xplane_config/simulatorxplaneconfig.h index f975c4e05..d4a8333cf 100644 --- a/src/plugins/simulator/xplane_config/simulatorxplaneconfig.h +++ b/src/plugins/simulator/xplane_config/simulatorxplaneconfig.h @@ -19,6 +19,10 @@ namespace BlackSimPlugin { namespace XPlane { + + /*! + * Setting for XBus. + */ struct XBusServer : public BlackCore::CSettingTrait { //! \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