Commit ffd947ce authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - GotoTime, translation and size issue.

parent d02c20e2
...@@ -40,7 +40,6 @@ GotoTimeDialog::GotoTimeDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf ) ...@@ -40,7 +40,6 @@ GotoTimeDialog::GotoTimeDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf )
{ {
setWindowFlags( Qt::Tool ); setWindowFlags( Qt::Tool );
setWindowTitle( qtr( "Go to time" ) ); setWindowTitle( qtr( "Go to time" ) );
resize( 260, 160 );
QGridLayout *mainLayout = new QGridLayout( this ); QGridLayout *mainLayout = new QGridLayout( this );
...@@ -55,8 +54,7 @@ GotoTimeDialog::GotoTimeDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf ) ...@@ -55,8 +54,7 @@ GotoTimeDialog::GotoTimeDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf )
QGroupBox *timeGroupBox = new QGroupBox; QGroupBox *timeGroupBox = new QGroupBox;
QGridLayout *boxLayout = new QGridLayout( timeGroupBox ); QGridLayout *boxLayout = new QGridLayout( timeGroupBox );
QLabel *timeIntro = new QLabel *timeIntro = new QLabel( qtr( "Go to time:" ) );
QLabel( "Go to time:" );
timeIntro->setWordWrap( true ); timeIntro->setWordWrap( true );
timeIntro->setAlignment( Qt::AlignCenter ); timeIntro->setAlignment( Qt::AlignCenter );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment