From 50ef42d5809184a645fc8b892b9cc69e908a5cc2 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sat, 3 Jul 2021 14:25:15 -0700 Subject: [PATCH] cleanup: remove long obsolete code We have stopped playing with beta versions many many years ago. Signed-off-by: Dirk Hohndel --- desktop-widgets/about.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/desktop-widgets/about.cpp b/desktop-widgets/about.cpp index 9ceed2177..58f376444 100644 --- a/desktop-widgets/about.cpp +++ b/desktop-widgets/about.cpp @@ -11,11 +11,6 @@ SubsurfaceAbout::SubsurfaceAbout(QWidget *parent) : QDialog(parent, QFlag(0)) setWindowModality(Qt::ApplicationModal); QString versionString(subsurface_git_version()); - QStringList readableVersions = QStringList() << "4.5.95" << "4.6 Beta 0" << - "4.5.96" << "4.6 Beta 1" << - "4.5.97" << "4.6 Beta 2"; - if (readableVersions.contains(versionString)) - versionString = readableVersions[readableVersions.indexOf(versionString) + 1]; ui.aboutLabel->setText(tr("" "Subsurface %1

"