diff --git a/src/blackmisc/audio/voiceroom.h b/src/blackmisc/audio/voiceroom.h index df2bcb467..77dbda076 100644 --- a/src/blackmisc/audio/voiceroom.h +++ b/src/blackmisc/audio/voiceroom.h @@ -61,11 +61,8 @@ namespace BlackMisc //! Set the voice channel void setChannel(const QString &channel) { m_channel = channel; } - /*! - * Server URL - * \param noProtocol either with (pseudo) protocol prefix or without - * \return - */ + //! Server URL + //! \param noProtocol either with (pseudo) protocol prefix or without QString getVoiceRoomUrl(bool noProtocol = true) const; //! Set voice room URL @@ -98,10 +95,8 @@ namespace BlackMisc //! Protocol prefix "vvl" static const QString &protocol() { static QString p("vvl"); return p; } - /*! - * Protocol - * \return with protocol prefix or without - */ + //! Protocol + //! \return with protocol prefix or without static const QString &protocolComplete() { static QString p("vvl://"); return p; } //! \copydoc BlackMisc::Mixin::String::toQString diff --git a/src/blackmisc/network/client.h b/src/blackmisc/network/client.h index f6d4675bb..0ad2be790 100644 --- a/src/blackmisc/network/client.h +++ b/src/blackmisc/network/client.h @@ -53,10 +53,10 @@ namespace BlackMisc //! The Capabilities enum enum Capabilities { - FsdWithInterimPositions = BlackMisc::CPropertyIndex::GlobalIndexAbuseMode, - FsdWithIcaoCodes, //!< basically means it is a pilot client handling ICAO code pacakages - FsdAtisCanBeReceived, - FsdWithAircraftConfig + FsdWithInterimPositions = BlackMisc::CPropertyIndex::GlobalIndexClientCapabilities, //!< interim positions + FsdWithIcaoCodes, //!< basically means it is a pilot client handling ICAO code pacakages + FsdAtisCanBeReceived, //!< ATIS + FsdWithAircraftConfig //!< Aircraft parts }; //! Default constructor.