- QFile *licenseFile = new QFile( "/usr/src/vlc/COPYING" );
- QTextEdit *licenseEdit = new QTextEdit( this );
- licenseEdit->setText( licenseFile->readAll() );
- licenseEdit->setReadOnly( true );
-
+ /* GPL License */
+ QFile *licenseFile = new QFile( "/usr/src/vlc/COPYING" );
+ QTextEdit *licenseEdit = new QTextEdit( this );
+ licenseEdit->setText( licenseFile->readAll() );
+ licenseEdit->setReadOnly( true );
+
+ /* People who helped */
+ QFile *thanksFile = new QFile( "/usr/src/vlc/THANKS" );
+ QTextEdit *thanksEdit = new QTextEdit( this );
+ thanksEdit->setText( thanksFile->readAll() );
+ thanksEdit->setReadOnly( true );
+
+ /* add the tabs to the Tabwidget */
+ tab->addTab( NULL, _( "Information" ) );
+ tab->addTab( NULL, _( "Authors" ) );
+ tab->addTab( thanksEdit, _("Thanks") );