diff --git a/src/blackgui/views/airportview.cpp b/src/blackgui/views/airportview.cpp index 6fa8afc21..3fefff6e0 100644 --- a/src/blackgui/views/airportview.cpp +++ b/src/blackgui/views/airportview.cpp @@ -1,5 +1,5 @@ /* Copyright (C) 2013 - * Swift Project Community / Contributors + * swift Project Community / Contributors * * This file is part of swift Project. It is subject to the license terms in the LICENSE file found in the top-level * directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project, @@ -22,4 +22,4 @@ namespace BlackGui this->standardInit(new CAirportListModel(this)); } } -} +} // namespace diff --git a/src/blackgui/views/statusmessageview.h b/src/blackgui/views/statusmessageview.h index 121181cc4..147197c68 100644 --- a/src/blackgui/views/statusmessageview.h +++ b/src/blackgui/views/statusmessageview.h @@ -24,7 +24,6 @@ namespace BlackGui { public: - //! Constructor explicit CStatusMessageView(QWidget *parent = nullptr); }; diff --git a/src/blacksound/soundgenerator.cpp b/src/blacksound/soundgenerator.cpp index c16f35266..7a39a79a3 100644 --- a/src/blacksound/soundgenerator.cpp +++ b/src/blacksound/soundgenerator.cpp @@ -503,7 +503,6 @@ namespace BlackSound void CSoundGenerator::printAllQtSoundDevices() { QTextStream qtout(stdout); - qtout << "output" << endl; foreach(QAudioDeviceInfo qd, QAudioDeviceInfo::availableDevices(QAudio::AudioOutput)) { @@ -515,8 +514,6 @@ namespace BlackSound { qtout << qd.deviceName() << endl; } - - } } // namespace diff --git a/src/swiftcore/tool.h b/src/swiftcore/tool.h index f77586aa7..d70c95a25 100644 --- a/src/swiftcore/tool.h +++ b/src/swiftcore/tool.h @@ -10,16 +10,16 @@ namespace BlackMiscTest { /*! - * \brief Supporting functions for running the tests + * Supporting functions for running the tests */ class Tool { private: - //! \brief Constructor + //! Constructor Tool() {} public: - //! \brief Get process id + //! Get process id static qint64 getPid() { return QCoreApplication::applicationPid(); @@ -28,7 +28,7 @@ namespace BlackMiscTest //! Start a new process static QProcess *startNewProcess(const QString &executable, const QStringList &arguments = QStringList(), QObject *parent = 0); - //! \brief Server loop + //! Server loop static void serverLoop(BlackCore::CRuntime *runtime); };