diff --git a/main.cpp b/main.cpp index 14e3562..a507b5b 100644 --- a/main.cpp +++ b/main.cpp @@ -10,9 +10,9 @@ int main(int argc, char *argv[]) //a.setStyle( "Fusion" ); - a.setOrganizationName("liggett"); + a.setOrganizationName("eliggett"); a.setOrganizationDomain("nodomain"); - a.setApplicationName("RigView"); + a.setApplicationName("wfview"); a.setWheelScrollLines(1); // one line per wheel click wfmain w; diff --git a/wfmain.cpp b/wfmain.cpp index 65f6895..fa5d955 100644 --- a/wfmain.cpp +++ b/wfmain.cpp @@ -4,20 +4,20 @@ #include "commhandler.h" #include "rigidentities.h" -// This code is copyright 2018-2019 Elliott H. Liggett +// This code is copyright 2018-2020 Elliott H. Liggett // All rights reserved wfmain::wfmain(QWidget *parent) : QMainWindow(parent), ui(new Ui::wfmain) { - QGuiApplication::setApplicationDisplayName("RigView"); - QGuiApplication::setApplicationName(QString("RigView")); + QGuiApplication::setApplicationDisplayName("wfview"); + QGuiApplication::setApplicationName(QString("wfview")); ui->setupUi(this); theParent = parent; - setWindowTitle(QString("RigView")); + setWindowTitle(QString("wfview")); ui->bandStkLastUsedBtn->setVisible(false); ui->bandStkVoiceBtn->setVisible(false); @@ -736,7 +736,7 @@ void wfmain::setAppTheme(bool isDark) if(isDark) { // QFile f(":qdarkstyle/style.qss"); // built-in resource - QFile f("/usr/share/rigview/stylesheets/" + prefs.stylesheetPath); + QFile f("/usr/share/wfview/stylesheets/" + prefs.stylesheetPath); if (!f.exists()) { printf("Unable to set stylesheet, file not found\n");