1
0
Fork 0

set organization name before loading settings

This commit is contained in:
Kevin Matz 2022-12-10 11:05:31 -05:00
parent eb47f6543f
commit 19df7540c1
1 changed files with 1 additions and 1 deletions

View File

@ -4,13 +4,13 @@
SacnExplorer::SacnExplorer(int argc, char *argv[])
: QApplication(argc, argv)
, settings_(new QSettings(this))
, node_(nullptr)
, window_(nullptr)
{
setOrganizationName("Company235");
setOrganizationDomain("company235.com");
setApplicationName(tr("sACN Explorer"));
settings_ = new QSettings(this);
// Persistant configuration
qDebug() << "Loaded application settings from" << settings_->fileName();