Skip to content

Commit 57ae33a

Browse files
oktal3700ltoenning
authored andcommitted
fix: doxygen warnings
1 parent 2ed1161 commit 57ae33a

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

src/gui/views/viewbase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ namespace swift::gui
397397

398398
//! Show loading indicator
399399
//! \param containerSizeDependent check against resize threshold if indicator makes sense
400-
//! \param timeoutMs timeout the loading indicator
400+
//! \param timeout timeout the loading indicator
401401
//! \param processEvents force event processing to display indicator by updating GUI
402402
int showLoadIndicator(int containerSizeDependent = -1,
403403
std::chrono::milliseconds timeout = std::chrono::milliseconds { 0 },

src/misc/simulation/ownaircraftprovider.h

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,13 +160,15 @@ namespace swift::misc
160160
swift::misc::physical_quantities::CLength
161161
getDistanceToOwnAircraft(const swift::misc::geo::ICoordinateGeodetic &position) const;
162162

163-
//! \copydoc IOwnAircraftProvider::updateCockpit(const swift::misc::simulation::CSimulatedAircraft &, const
164-
//! swift::misc::CIdentifier &)
163+
// clang-format off
164+
//! \copydoc IOwnAircraftProvider::updateCockpit(const swift::misc::simulation::CSimulatedAircraft &, const swift::misc::CIdentifier &)
165+
// clang-format on
165166
bool updateCockpit(const swift::misc::simulation::CSimulatedAircraft &aircraft,
166167
const swift::misc::CIdentifier &originator);
167168

168-
//! \copydoc IOwnAircraftProvider::updateCockpit(const aviation::CComSystem &, const aviation::CComSystem &,
169-
//! const aviation::CTransponder &, const swift::misc::CIdentifier &);
169+
// clang-format off
170+
//! \copydoc IOwnAircraftProvider::updateCockpit(const aviation::CComSystem &, const aviation::CComSystem &, const aviation::CTransponder &, const swift::misc::CIdentifier &)
171+
// clang-format on
170172
bool updateCockpit(const aviation::CComSystem &com1, const aviation::CComSystem &com2,
171173
const aviation::CTransponder &transponder, const swift::misc::CIdentifier &originator);
172174

src/misc/threadedtimer.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ namespace swift::misc
1818
{
1919
Q_OBJECT
2020
public:
21+
//! Constructor
2122
CThreadedTimer(QObject *owner, const QString &name, bool singleShot = false);
2223

2324
//! Destructor
@@ -32,6 +33,7 @@ namespace swift::misc
3233
void stopTimer();
3334

3435
signals:
36+
//! Timer timed out
3537
void timeout();
3638

3739
private:

src/plugins/simulator/fsx/simulatorfsx.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace swift::simplugin::fsx
2222
swift::misc::simulation::IRemoteAircraftProvider *remoteAircraftProvider,
2323
swift::misc::network::IClientProvider *clientProvider, QObject *parent = nullptr);
2424

25-
//! \name ISimulator implementations
25+
//! ISimulator implementations
2626
//! @{
2727
virtual bool connectTo() override;
2828
//! @}
@@ -38,6 +38,7 @@ namespace swift::simplugin::fsx
3838
using CSimulatorFsxCommonListener::CSimulatorFsxCommonListener;
3939

4040
protected:
41+
//! \copydoc swift::core::ISimulatorListener::startImpl
4142
virtual void startImpl() override;
4243
};
4344
} // namespace swift::simplugin::fsx

tests/misc/aviation/testongroundinfo.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ namespace MiscTest
7777

7878
} // namespace MiscTest
7979

80+
//! main
8081
SWIFTTEST_APPLESS_MAIN(MiscTest::CMiscOnGroundInfo);
8182

8283
#include "testongroundinfo.moc"

0 commit comments

Comments
 (0)