summaryrefslogtreecommitdiff
path: root/wizard/welcome.cpp
diff options
context:
space:
mode:
authorAndreas Loibl <andreas@andreas-loibl.de>2011-10-03 01:25:43 +0200
committerAndreas Loibl <andreas@andreas-loibl.de>2011-10-03 01:25:43 +0200
commit4a6deb34121aee9122745189a2d8dee976e76946 (patch)
tree11b8104e4a58cfd45d0983207db55c492de0ede8 /wizard/welcome.cpp
parent2f15cfa42e133c9d96061e439d671ebd54791d08 (diff)
downloadacritoxinstaller-4a6deb34121aee9122745189a2d8dee976e76946.zip
acritoxinstaller-4a6deb34121aee9122745189a2d8dee976e76946.tar.gz
added HTML welcome page
Diffstat (limited to 'wizard/welcome.cpp')
-rw-r--r--wizard/welcome.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/wizard/welcome.cpp b/wizard/welcome.cpp
index 56210e0..7cbb0d0 100644
--- a/wizard/welcome.cpp
+++ b/wizard/welcome.cpp
@@ -1,5 +1,6 @@
#include <QtGui>
#include "welcome.h"
+#include "config.h"
#include "../listdelegate.h"
#include "../listitem.h"
@@ -9,6 +10,7 @@ wpWelcome::wpWelcome(QWidget *parent) : QWizardPage(parent)
backend = Backend::instance();
connect(backend, SIGNAL(finishedCommand(QString)), this, SLOT(backendFinishedCommand(QString)));
setComplete(false);
+ textBrowser->setSource(QString("%1/html/%2.html").arg(BACKEND_DIR).arg(tr("welcome")));
backend->exec("init_installer");
}