From 0bdba4494c8bde05a9f1dea6ad99b2005572f708 Mon Sep 17 00:00:00 2001 From: Elliott Liggett Date: Tue, 10 Mar 2020 10:17:39 -0700 Subject: [PATCH] Minor change to wording. --- wfmain.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wfmain.cpp b/wfmain.cpp index fa5d955..0868ea0 100644 --- a/wfmain.cpp +++ b/wfmain.cpp @@ -1511,7 +1511,7 @@ void wfmain::on_aboutBtn_clicked() // QT library version // stylesheet credit // contact information - QString copyright = QString("Copyright 2017, 2018 Elliott H. Liggett. All rights reserved."); + QString copyright = QString("Copyright 2017-2020 Elliott H. Liggett. All rights reserved."); QString ssCredit = QString("Stylesheet qdarkstyle used under MIT license, stored in /usr/share/rigview/stylesheets/."); QString contact = QString("email the author: kilocharlie8@gmail.com or W6EL on the air!"); QString buildInfo = QString("Build " + QString(GITSHORT) + " on " + QString(__DATE__) + " at " + __TIME__ + " by " + UNAME + "@" + HOST); @@ -1519,14 +1519,14 @@ void wfmain::on_aboutBtn_clicked() QString aboutText = copyright + "\n" + ssCredit + "\n"; aboutText.append(contact + "\n" + buildInfo); - QMessageBox::about(this, "RigView", aboutText); + QMessageBox::about(this, "wfview", aboutText); // note: should set parent->Icon() and window titles } void wfmain::on_aboutQtBtn_clicked() { - QMessageBox::aboutQt(this, "Rig View"); + QMessageBox::aboutQt(this, "wfview"); } void wfmain::on_fStoBtn_clicked()