diff -r ea09eeba1c2b -r bdc9d429cdc2 src/aboutDialog.cpp
--- a/src/aboutDialog.cpp Tue May 21 19:07:38 2013 +0300
+++ b/src/aboutDialog.cpp Wed May 22 20:34:21 2013 +0300
@@ -47,17 +47,17 @@
"available for some reason, see
"
"http://www.gnu.org/licenses/ for the license terms.
"
- "The application icon is derived from "
- "this image.
"
+ "The graphical assets of " APPNAME " are licensed under the
"
+ "CC Attribution-ShareAlike 3.0 Unported license. The
"
+ "GNU GPL applies to the source code of the program.
"
+ "The application icon is derived from this image. The
"
+ "linked image (retrieved 22 May 2013) was released
"
+ "into the public domain.
"
);
// Rest in peace, James.
QLabel* memorial = new QLabel ("In living memory of James Jessiman.");
- // Align everything to the center.
- for (QLabel* label : vector ({icon, title, info, memorial}))
- label->setAlignment (Qt::AlignCenter);
-
QDialogButtonBox* buttons = new QDialogButtonBox (QDialogButtonBox::Close);
QPushButton* helpButton = new QPushButton;
@@ -68,10 +68,13 @@
connect (buttons, SIGNAL (rejected ()), this, SLOT (reject ()));
QVBoxLayout* layout = new QVBoxLayout (this);
- layout->addWidget (icon);
- layout->addWidget (title);
- layout->addWidget (info);
- layout->addWidget (memorial);
+
+ // Align everything to the center.
+ for (QLabel* label : vector ({icon, title, info, memorial})) {
+ label->setAlignment (Qt::AlignCenter);
+ layout->addWidget (label);
+ }
+
layout->addWidget (buttons);
setWindowTitle ("About " APPNAME);