]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs/help.cpp
Layout fixes in COPYING (and use spaces instead of tabs). Use a fixed width font...
[vlc] / modules / gui / qt4 / dialogs / help.cpp
index 9943ba1d75b848b62eaee2df99b0475be5247f60..3d787da834d682b2e9d46d7a5e43ea96bf2f5f3b 100644 (file)
@@ -22,7 +22,7 @@
  *****************************************************************************/
 
 #include "dialogs/help.hpp"
-#include "vlc_about.h"
+#include <vlc_about.h>
 
 #include "dialogs_provider.hpp"
 
@@ -94,7 +94,7 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
                 "VideoLAN Team.\nIt is a standalone multimedia player, "
                 "encoder and streamer, that can read from many supports "
                 "(files, CDs, DVDs, networks, capture cards...) and that "
-                " works on many platforms.\n\n" )
+                "works on many platforms.\n\n" )
             + qtr( "You are using the new Qt4 Interface.\n" )
             + qtr( "Compiled by " ) + qfu( VLC_CompileBy() )+ "@"
             + qfu( VLC_CompileDomain() ) + ".\n"
@@ -114,6 +114,7 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
 
     /* GPL License */
     QTextEdit *licenseEdit = new QTextEdit( this );
+    licenseEdit->setFontFamily( "Monospace" );
     licenseEdit->setText( qfu( psz_license ) );
     licenseEdit->setReadOnly( true );
 
@@ -121,7 +122,7 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
     QWidget *thanksWidget = new QWidget( this );
     QVBoxLayout *thanksLayout = new QVBoxLayout( thanksWidget );
 
-    QLabel *thanksLabel = new QLabel( qtr("We would like to thanks the whole "
+    QLabel *thanksLabel = new QLabel( qtr("We would like to thank the whole "
                 "community, the testers, our users and the following people "
                 "(and the missing ones...) for their collaboration to "
                 "provide the best software." ) );