diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2011-12-01 11:27:07 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2011-12-01 11:27:07 +0100 |
commit | ef111490bf0fef23f338910c0a54c142aa61d938 (patch) | |
tree | 047e943347637ce2f13006877a694c7c7fc9f4fc /client/pcpviewer | |
parent | 8dbc6ee0fbc1dd4485ec0ff1cf4a48e24b0b41a8 (diff) |
Set window title and icon.
Diffstat (limited to 'client/pcpviewer')
-rw-r--r-- | client/pcpviewer/pcpviewer.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/pcpviewer/pcpviewer.cc b/client/pcpviewer/pcpviewer.cc index 5853e0a..ea59edb 100644 --- a/client/pcpviewer/pcpviewer.cc +++ b/client/pcpviewer/pcpviewer.cc @@ -42,6 +42,9 @@ PCPViewer::PCPViewer(QString patientid) : praxisd("sarge", 10000) { + setWindowTitle(tr("Pracro Patient View")); + setWindowIcon(QIcon(":/icons/icon.png")); + this->patientid = patientid; setLayout(new QVBoxLayout()); |