diff options
author | Chris Robinson <[email protected]> | 2019-08-31 21:47:58 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-08-31 21:47:58 -0700 |
commit | 5becf4bb73ffc448dbad5ba6dd9377f3c8ab8697 (patch) | |
tree | 85a8a6f99f536b79da765bed9ebfabb044632f79 /utils/alsoft-config/mainwindow.cpp | |
parent | 96af306b3c999e05194c0fd431dc49b2219a7649 (diff) |
Don't include version.h in mainwindow.cpp
Should help with post-commit compile times
Diffstat (limited to 'utils/alsoft-config/mainwindow.cpp')
-rw-r--r-- | utils/alsoft-config/mainwindow.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp index 3b7b428a..c0c0e1e5 100644 --- a/utils/alsoft-config/mainwindow.cpp +++ b/utils/alsoft-config/mainwindow.cpp @@ -1,7 +1,7 @@ #include "config.h" -#include "version.h" +#include "mainwindow.h" #include <iostream> #include <cmath> @@ -11,8 +11,8 @@ #include <QCloseEvent> #include <QSettings> #include <QtGlobal> -#include "mainwindow.h" #include "ui_mainwindow.h" +#include "verstr.h" namespace { @@ -503,8 +503,8 @@ void MainWindow::cancelCloseAction() void MainWindow::showAboutPage() { QMessageBox::information(this, tr("About"), - tr("OpenAL Soft Configuration Utility.\nBuilt for OpenAL Soft library version ")+ - (ALSOFT_VERSION "-" ALSOFT_GIT_COMMIT_HASH " (" ALSOFT_GIT_BRANCH " branch).")); + tr("OpenAL Soft Configuration Utility.\nBuilt for OpenAL Soft library version ") + + tr(GetVersionString())); } |