added QT library in about box

This commit is contained in:
Volker Fischer 2008-07-20 08:55:49 +00:00
parent 88a403ce66
commit f30d4990e3
2 changed files with 8 additions and 4 deletions

5
README
View file

@ -72,10 +72,13 @@ This code contains open source code from different sources. The developer(s) wan
to thank the developer of this code for making their efforts available under open to thank the developer of this code for making their efforts available under open
source: source:
- Qt cross-platform application framework: http://trolltech.com
- audio reverberation code: by Perry R. Cook and Gary P. Scavone, 1995 - 2004 - audio reverberation code: by Perry R. Cook and Gary P. Scavone, 1995 - 2004
(taken from "The Synthesis ToolKit in C++ (STK)") (taken from "The Synthesis ToolKit in C++ (STK)")
- IMA-ADPCM: by Erik de Castro Lopo - IMA-ADPCM: by Erik de Castro Lopo
- some parts are taken from the project "Dream: a PC-based Digital Radio Mondiale - some parts are taken from the project "Dream: a PC-based Digital Radio Mondiale
(DRM) receiver" written by one of the llcon authors, Volker Fischer (DRM) receiver" written by one of the llcon authors, Volker Fischer:
http://drm.sf.net

View file

@ -293,15 +293,16 @@ CAboutDlg::CAboutDlg ( QWidget* parent ) : QDialog ( parent )
"Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 " "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 "
"USA" "USA"
"</font></p><br>" "</font></p><br>"
"<p>" // libraries used by this compilation of Dream "<p>" // libraries used by this compilation of llcon
"<b>" + tr("llcon uses the following libraries or code snippets:") + "<b>" + tr("llcon uses the following libraries or code snippets:") +
"</b></p>" "</b></p>"
"<ul>" "<ul>"
"<li>audio reverberation code: by Perry R. Cook and Gary P. Scavone, " "<li>Qt cross-platform application framework: <i>http://trolltech.com</li>"
"<li>Audio reverberation code: by Perry R. Cook and Gary P. Scavone, "
"1995 - 2004 (taken from \"The Synthesis ToolKit in C++ (STK)\")</li>" "1995 - 2004 (taken from \"The Synthesis ToolKit in C++ (STK)\")</li>"
"<li>IMA-ADPCM: by Erik de Castro Lopo</li>" "<li>IMA-ADPCM: by Erik de Castro Lopo</li>"
"<li>Parts from Dream DRM Receiver by Volker Fischer and Alexander " "<li>Parts from Dream DRM Receiver by Volker Fischer and Alexander "
"Kurpiers</li>" "Kurpiers: <i>http://drm.sf.net</li>"
"</ul>" "</ul>"
"</center><br>"); "</center><br>");