refactor: Remove old comments

This commit is contained in:
Lars Toenning
2024-11-30 12:12:28 +01:00
parent 5c81599589
commit 5e8ff1a4ca
13 changed files with 8 additions and 48 deletions

View File

@@ -439,9 +439,6 @@ namespace swift::core::context
m_voiceClient->setOutputMuted(muted); m_voiceClient->setOutputMuted(muted);
if (!muted) { m_voiceClient->setNormalizedMasterOutputVolume(m_outMasterVolumeBeforeMute); } if (!muted) { m_voiceClient->setNormalizedMasterOutputVolume(m_outMasterVolumeBeforeMute); }
// signal no longer need, signaled by m_voiceClient->setMuted
// emit this->changedMute(muted);
} }
bool CContextAudioBase::isOutputMuted() const bool CContextAudioBase::isOutputMuted() const
@@ -456,7 +453,7 @@ namespace swift::core::context
const int ms = t.toMs(); const int ms = t.toMs();
if (ms > 10) if (ms > 10)
{ {
// As of https://dev.swift-project.org/T558 play additional notification // Play additional notification
const QPointer<const CContextAudioBase> myself(this); const QPointer<const CContextAudioBase> myself(this);
QTimer::singleShot(ms, this, [=] { QTimer::singleShot(ms, this, [=] {
if (!sApp || sApp->isShuttingDown() || !myself) { return; } if (!sApp || sApp->isShuttingDown() || !myself) { return; }

View File

@@ -243,7 +243,6 @@ namespace swift::core::db
// ps_read is implemented in the derived classes // ps_read is implemented in the derived classes
if (entities == CEntityFlags::NoEntity) { return; } if (entities == CEntityFlags::NoEntity) { return; }
//! https://dev.swift-project.org/T490
QPointer<CDatabaseReader> myself(this); QPointer<CDatabaseReader> myself(this);
QTimer::singleShot(0, this, [=] { QTimer::singleShot(0, this, [=] {
if (!sApp || sApp->isShuttingDown() || !myself) { return; } if (!sApp || sApp->isShuttingDown() || !myself) { return; }

View File

@@ -1082,7 +1082,7 @@ namespace swift::core::fsd
// IVAO parts // IVAO parts
// https://discordapp.com/channels/539048679160676382/695961646992195644/707915838845485187 // https://discordapp.com/channels/539048679160676382/695961646992195644/707915838845485187
// https://dev.swift-project.org/w/knowhow/simandinterpolation/ivaoparts/ // https://github.com/swift-project/pilotclient/wiki/Knowledgebase-Simulation:-IVAO-parts
} }
void CFSDClient::handleAtcDataUpdate(const QStringList &tokens) void CFSDClient::handleAtcDataUpdate(const QStringList &tokens)

View File

@@ -532,11 +532,7 @@ namespace swift::gui
// this->setParent(m_originalParent, this->windowFlags() & ~Qt::Window); // this->setParent(m_originalParent, this->windowFlags() & ~Qt::Window);
this->setWindowFlags(this->windowFlags() & ~Qt::Window); this->setWindowFlags(this->windowFlags() & ~Qt::Window);
// RW: The line below is commented to prevent making this widget visible as a top window if (this->parentWidget())
// in case it is constructed without parent or anchestor widget. Contrary to the comment,
// it does not seem to be necessary https://dev.vatsim-germany.org/issues/738
// KB 2018-12 with T447 T452 re-eanled the line again, but with parent condition
if (this->parentWidget()) // this line
{ {
this->setVisible(true); // after redocking this is required this->setVisible(true); // after redocking this is required
} }

View File

@@ -115,10 +115,7 @@ namespace swift::gui::settings
struct TDockWidget : public swift::misc::TSettingTrait<CDockWidgetSettings> struct TDockWidget : public swift::misc::TSettingTrait<CDockWidgetSettings>
{ {
//! \copydoc swift::misc::TSettingTrait::key //! \copydoc swift::misc::TSettingTrait::key
static const char *key() static const char *key() { return "guidockwidget/%Application%/%OwnerName%"; } // Key in data cache
{
return "guidockwidget/%Application%/%OwnerName%";
} // Key in data cache https://dev.vatsim-germany.org/issues/776
//! \copydoc swift::misc::TSettingTrait::humanReadable //! \copydoc swift::misc::TSettingTrait::humanReadable
static const QString &humanReadable() static const QString &humanReadable()

View File

@@ -955,11 +955,7 @@ namespace swift::misc
return pm; return pm;
} }
const QPixmap &CIcons::modelExclude16() const QPixmap &CIcons::modelExclude16() { return cross16(); }
{
// Alternative: static const QPixmap pm(":/diagona/icons/diagona/icons/paper-plane--minus.png");
return cross16();
}
const QPixmap &CIcons::modelConverterX() const QPixmap &CIcons::modelConverterX()
{ {

View File

@@ -227,8 +227,7 @@ namespace swift::misc
//! Create a range from reverse iterators. //! Create a range from reverse iterators.
CRange<const_reverse_iterator> reverse() const CRange<const_reverse_iterator> reverse() const
{ {
static_assert(std::is_same_v<decltype(*rbegin()), decltype(*begin())>, static_assert(std::is_same_v<decltype(*rbegin()), decltype(*begin())>, "");
"see https://dev.swift-project.org/T700");
return { rbegin(), rend() }; return { rbegin(), rend() };
} }

View File

@@ -139,8 +139,7 @@ namespace swift::misc::simulation
if (latest.isNewerThanAdjusted(m_s[1])) { m_s[2] = latest; } if (latest.isNewerThanAdjusted(m_s[1])) { m_s[2] = latest; }
const qint64 currentAdjusted = m_s[1].getAdjustedMSecsSinceEpoch(); const qint64 currentAdjusted = m_s[1].getAdjustedMSecsSinceEpoch();
// with https://dev.swift-project.org/T668#15841 avoid 2 very close positions // avoid 2 very close positions currently done by time, maybe we can also choose distance
// currently done by time, maybe we can also choose distance
const qint64 osNotTooClose = qRound64(0.8 * os); const qint64 osNotTooClose = qRound64(0.8 * os);
const CAircraftSituation older = const CAircraftSituation older =
m_currentSituations.findObjectBeforeAdjustedOrDefault(currentAdjusted - osNotTooClose); m_currentSituations.findObjectBeforeAdjustedOrDefault(currentAdjusted - osNotTooClose);

View File

@@ -26,7 +26,6 @@ namespace swift::misc
//! Returns the bin directory. On Windows/Linux this is the same directory as //! Returns the bin directory. On Windows/Linux this is the same directory as
//! QCoreApplication::applicationDirPath(), but on MacOS the exceutable is //! QCoreApplication::applicationDirPath(), but on MacOS the exceutable is
//! located deeper in the hierarchy of the bundles //! located deeper in the hierarchy of the bundles
//! \see https://dev.swift-project.org/w/dev/swiftpc/dirstructure/
static const QString &binDirectory(); static const QString &binDirectory();
//! Plugins directory //! Plugins directory

View File

@@ -40,7 +40,6 @@ namespace swift::misc::test
CAtcStation CTesting::createStation(int index, bool byPropertyIndex) CAtcStation CTesting::createStation(int index, bool byPropertyIndex)
{ {
// from WGS is slow, so static const (only 1 time init) // from WGS is slow, so static const (only 1 time init)
// https://dev.vatsim-germany.org/issues/322#note-2
static const CCoordinateGeodetic geoPos = static const CCoordinateGeodetic geoPos =
CCoordinateGeodetic::fromWgs84("48° 21 13″ N", "11° 47 09″ E", CAltitude(index, CLengthUnit::ft())); CCoordinateGeodetic::fromWgs84("48° 21 13″ N", "11° 47 09″ E", CAltitude(index, CLengthUnit::ft()));
const QString cs = QStringLiteral("%1MI-SNO_TWR").arg(index); const QString cs = QStringLiteral("%1MI-SNO_TWR").arg(index);

View File

@@ -174,7 +174,7 @@ namespace swift::misc
setStarted(); setStarted();
auto *thread = new CRegularThread(m_owner); auto *thread = new CRegularThread(m_owner);
Q_ASSERT(m_owner); // must not be null, see (9) https://dev.vatsim-germany.org/issues/402 Q_ASSERT(m_owner); // must not be null
if (m_owner) if (m_owner)
{ {
const QString ownerName = const QString ownerName =

View File

@@ -191,25 +191,6 @@ namespace swift::simplugin::fscommon
bool situationN = !situation; bool situationN = !situation;
bool aircraftPartsN = !aircraftParts; bool aircraftPartsN = !aircraftParts;
/** KB 2019-03 disabled as this should be fixed the whole block can be removed as soon this has been tested
//! \todo KB 2018-11 BUG fix for broken connection, needs to go as soon as issue is fixed
//! Seems to be fixed with
//! a) https://dev.swift-project.org/T471
//! b) https://dev.swift-project.org/T444
//! Remove after 2019-03 if issue is resolved
if (!(FSUIPC_Read(0x0238, 3, localFsTimeRaw, &dwResult) && FSUIPC_Process(&dwResult)))
{
FSUIPC_Close();
FSUIPC_Open(SIM_ANY, &dwResult);
m_closeCount++;
m_openCount++;
if (m_openCount < 10)
{
CLogMessage(this).warning(u"Used FSUIPC open/close workaround");
}
}
**/
if (FSUIPC_Read(0x0238, 3, localFsTimeRaw, &dwResult) && if (FSUIPC_Read(0x0238, 3, localFsTimeRaw, &dwResult) &&
// COM settings // COM settings

View File

@@ -337,6 +337,4 @@ private:
//! @} //! @}
}; };
// #pragma pop_macro("interface")
#endif // guard #endif // guard