Mercurial > trustbridge
diff ui/mainwindow.cpp @ 409:09bb19e5e369
Remove m13 mentions and change test certificate to intevation.de
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Wed, 16 Apr 2014 14:00:12 +0000 |
parents | af53c40e74b1 |
children | 16b5cd858571 |
line wrap: on
line diff
--- a/ui/mainwindow.cpp Wed Apr 16 13:41:10 2014 +0000 +++ b/ui/mainwindow.cpp Wed Apr 16 14:00:12 2014 +0000 @@ -29,9 +29,13 @@ // something to say #define NAG_INTERVAL_MINUTES 60 -#define SERVER_URL "https://files.kolab.org:443" -#define LIST_RESOURCE "/incoming/aheinecke/test" -#define SW_RESOURCE "/incoming/aheinecke/test" +#ifndef APPNAME +#define APPNAME "TrustBridge" +#endif + +#define SERVER_URL "https://files.intevation.de:443" +#define LIST_RESOURCE "/users/aheinecke/zertifikatsliste_1.txt" +#define SW_RESOURCE "/users/aheinecke/zertifikatsliste_1.txt" #include "certificatelist.h" #include "downloader.h" @@ -298,7 +302,7 @@ QLabel *logo = new QLabel; logo->setBackgroundRole(QPalette::Base); logo->setPixmap(QPixmap::fromImage(*logoImage)); - QLabel *title = new QLabel("<h2>" + tr("Certificate Installer") + "</h2>"); + QLabel *title = new QLabel("<h2>" + QString::fromLatin1(APPNAME) + "</h2>"); QLabel *subTitle = new QLabel("This Software installs and removes Certificates"); headerTextLayout->addWidget(title); headerTextLayout->addWidget(subTitle);