This commit is contained in:
Klaus Basan
2014-05-08 00:11:15 +02:00
parent 4d7c198d26
commit 41b89e928f
3 changed files with 4 additions and 2 deletions

View File

@@ -3,6 +3,7 @@
#include "blackcore/dbus_server.h"
#include "blackmisc/networkutils.h"
#include "blackmisc/settingutilities.h"
#include "blackmisc/project.h"
#include <QDesktopServices>
#include <QUrl>
#include <QDir>
@@ -15,6 +16,7 @@ CIntroWindow::CIntroWindow(QWidget *parent) :
ui(new Ui::CIntroWindow)
{
ui->setupUi(this);
this->setWindowTitle(BlackMisc::CProject::systemNameAndVersion());
this->layout()->setSizeConstraint(QLayout::SetFixedSize);
this->ui->cb_DBusServer->addItem(BlackCore::CDBusServer::sessionDBusServer());
this->ui->cb_DBusServer->addItem(BlackCore::CDBusServer::systemDBusServer());

View File

@@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle">
<string>BlackGUI intro screen</string>
<string>swift intro screen</string>
</property>
<property name="windowIcon">
<iconset resource="../../src/blackgui/blackgui.qrc">

View File

@@ -107,7 +107,7 @@ namespace BlackMisc
const QString &CProject::systemNameAndVersion()
{
static QString s = QString("BlackBox %1").arg(version());
static QString s = QString("swift %1").arg(version());
return s;
}