aboutsummaryrefslogtreecommitdiffstats
path: root/utils/alsoft-config/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/alsoft-config/mainwindow.cpp')
-rw-r--r--utils/alsoft-config/mainwindow.cpp8
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()));
}