summaryrefslogtreecommitdiff
path: root/client/aboutbox.cc
diff options
context:
space:
mode:
authorLars Bisballe Jensen <larsbisballe@gmail.com>2011-11-03 15:21:31 +0100
committerLars Bisballe Jensen <larsbisballe@gmail.com>2011-11-03 15:21:31 +0100
commit95ca5d5e396bfaad076324d225b5a15cfc9fcb29 (patch)
treed02186f4d23f78fd066cc7ed49ed5db19fc5e1bb /client/aboutbox.cc
parentfa13e95b495e49316524c27f6045c1c3cd2547ca (diff)
changed aboutbox text
Diffstat (limited to 'client/aboutbox.cc')
-rw-r--r--client/aboutbox.cc12
1 files changed, 9 insertions, 3 deletions
diff --git a/client/aboutbox.cc b/client/aboutbox.cc
index 47cc9e3..e90efa1 100644
--- a/client/aboutbox.cc
+++ b/client/aboutbox.cc
@@ -67,9 +67,15 @@ AboutBox::AboutBox(QWidget *parent, Qt::WindowFlags f): QDialog(parent, f)
QHBoxLayout *topLayout = new QHBoxLayout();
QLabel *logo = new QLabel();
logo->setPixmap(QPixmap(":icons/icon.png"));
- QLabel *title = new QLabel(tr("<h1>Pracro Client</h1>"
- "<h2>v."VERSION"</h2>"
- "Developed at Aarhus University Hospital"));
+ QLabel *title = new QLabel;
+ title->setWordWrap(true);
+ title->setText(tr("<h1>Pracro Client</h1>"
+ "<h2>v."VERSION"</h2>"
+ "Copyright (C) 2007-2011 Aasimon.org<br />"
+ "This is free software. You may redistribute copies of it "
+ "under the terms of the GNU General Public License "
+ "(http://www.gnu.org/licenses/gpl.html). There is NO "
+ "WARRANTY, to the extent permitted by law."));
topLayout->addWidget(logo);
topLayout->addWidget(title);