diff options
author | Louie S <louie@example.com> | 2024-03-18 15:16:01 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2024-03-18 15:16:01 -0400 |
commit | 4f6bf0f32483f524f2f654c9eaf9274d8e85af77 (patch) | |
tree | 9d6aa79f62d246aebe35d412ae7c221cbf5e6aac /src | |
parent | a394dab92712a7a588805df69cd89710071f3a51 (diff) |
Set settings with macro variables
Diffstat (limited to 'src')
-rw-r--r-- | src/assignmentList.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/assignmentList.cpp b/src/assignmentList.cpp index c1e40f5..136af04 100644 --- a/src/assignmentList.cpp +++ b/src/assignmentList.cpp @@ -25,8 +25,8 @@ AssignmentList::AssignmentList() { // set QSettings information - QCoreApplication::setOrganizationName("assignment-list-qt"); // TODO grab this from a config.h type file - QCoreApplication::setApplicationName("assignment-list-qt"); // TODO grab this from a config.h type file + QCoreApplication::setOrganizationName(ORGANIZATION_NAME); + QCoreApplication::setApplicationName(PROJECT_NAME); // ensure QSettings location exists this->initializeSettings(); |