# # # patch "src/view/dialogs/About.cpp" # from [7aa243f1a142f1d2c27fc09fe5361a7675da596c] # to [56849dd96a26feb6b715a44be632dd34944e1b52] # # patch "src/view/dialogs/About.h" # from [8787b762fe83ed617d364e18ff0de7337fd233d4] # to [a9e9e206ccab9eaf927f806ae847359530c87a25] # ============================================================ --- src/view/dialogs/About.cpp 7aa243f1a142f1d2c27fc09fe5361a7675da596c +++ src/view/dialogs/About.cpp 56849dd96a26feb6b715a44be632dd34944e1b52 @@ -24,22 +24,24 @@ About::About(QWidget * parent) : Dialog( { setupUi(this); Dialog::init(); - + aboutText->setText( tr("Version %1").arg(GUITONE_VERSION) + - tr("

Authors: " - "Thomas Keller, " + tr("

Active Author: " + "Thomas Keller" + "
Retired Authors: " "Ingo Maindorfer and " - "Jean-Louis Fuchs." + "Jean-Louis Fuchs" "

This program is free software; you can redistribute it and/or modify
" "it under the terms of the GNU General Public License as published by
" "the Free Software Foundation; either version 2 of the License, or
" "(at your option) any later version." "

Bugs? Suggestions? Help? " "guitone Homepage" - "

Many thanks go to the friendly guys at #qt for their helpful
" + "

Many thanks go to the friendly guys at " + "#qt for their helpful
" "comments during endless coding sessions - you guys rock!" - ) + ) ); } ============================================================ --- src/view/dialogs/About.h 8787b762fe83ed617d364e18ff0de7337fd233d4 +++ src/view/dialogs/About.h a9e9e206ccab9eaf927f806ae847359530c87a25 @@ -26,11 +26,10 @@ class About : public Dialog, private Ui: class About : public Dialog, private Ui::AboutDialog { - Q_OBJECT - + Q_OBJECT public: - About(QWidget*); - ~About(); + About(QWidget *); + ~About(); }; #endif