]> git.sesse.net Git - vlc/commitdiff
qt4 - Size and translations.
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 26 Apr 2007 22:41:52 +0000 (22:41 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 26 Apr 2007 22:41:52 +0000 (22:41 +0000)
modules/gui/qt4/dialogs/gototime.cpp
modules/gui/qt4/dialogs/preferences.cpp

index 175e6510cb671197a10563df00f8efdaf51f4d6f..04ba9cae42fc2858fb14eba7a8bbe6d6b616af47 100644 (file)
@@ -54,7 +54,7 @@ GotoTimeDialog::GotoTimeDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
     buttonBox->addButton( gotoButton, QDialogButtonBox::AcceptRole );
     buttonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
 
-    QGroupBox *timeGroupBox = new QGroupBox( "Time" );
+    QGroupBox *timeGroupBox = new QGroupBox( qtr("Time") );
     QGridLayout *boxLayout = new QGridLayout( timeGroupBox );
 
     QLabel *timeIntro = new
@@ -73,7 +73,7 @@ GotoTimeDialog::GotoTimeDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
     QSpacerItem *spacerBox = new QSpacerItem(20, 10, QSizePolicy::Minimum,
                                         QSizePolicy::Fixed);
 
-    QSpacerItem *spacerItem = new QSpacerItem(20, 5, QSizePolicy::Minimum,
+    QSpacerItem *spacerItem = new QSpacerItem(20, 3, QSizePolicy::Minimum,
                                         QSizePolicy::Expanding);
 
     boxLayout->addWidget( timeIntro, 0, 0, 1, 2 );
index 72773e93fef3c9864d3f8156a06601854135d6b0..c171ea7b011d0db1ab6f0212bfe4574597a443a7 100644 (file)
@@ -46,7 +46,7 @@ PrefsDialog::PrefsDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
 {
     QGridLayout *main_layout = new QGridLayout( this );
     setWindowTitle( qtr( "Preferences" ) );
-    resize( 700, 650 );
+    resize( 700, 600 );
 
     /* Create Panels */
     tree_panel = new QWidget( 0 );