Commit 6ef3c715 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Use qt iso qt4

parent be215a75
...@@ -549,12 +549,12 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, ...@@ -549,12 +549,12 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
ui.skins->setChecked( true ); ui.skins->setChecked( true );
} else { } else {
/* defaults to qt */ /* defaults to qt */
ui.qt4->setChecked( true ); ui.qt->setChecked( true );
} }
free( psz_intf ); free( psz_intf );
optionWidgets.append( ui.skins ); optionWidgets.append( ui.skins );
optionWidgets.append( ui.qt4 ); optionWidgets.append( ui.qt );
#if !defined( WIN32) #if !defined( WIN32)
ui.stylesCombo->addItem( qtr("System's default") ); ui.stylesCombo->addItem( qtr("System's default") );
ui.stylesCombo->addItems( QStyleFactory::keys() ); ui.stylesCombo->addItems( QStyleFactory::keys() );
...@@ -572,7 +572,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, ...@@ -572,7 +572,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
optionWidgets.append( NULL ); optionWidgets.append( NULL );
#endif #endif
radioGroup = new QButtonGroup(this); radioGroup = new QButtonGroup(this);
radioGroup->addButton( ui.qt4, 0 ); radioGroup->addButton( ui.qt, 0 );
radioGroup->addButton( ui.skins, 1 ); radioGroup->addButton( ui.skins, 1 );
CONNECT( radioGroup, buttonClicked( int ), CONNECT( radioGroup, buttonClicked( int ),
ui.styleStackedWidget, setCurrentIndex( int ) ); ui.styleStackedWidget, setCurrentIndex( int ) );
......
...@@ -348,7 +348,7 @@ ...@@ -348,7 +348,7 @@
</spacer> </spacer>
</item> </item>
<item row="0" column="2"> <item row="0" column="2">
<widget class="QRadioButton" name="qt4"> <widget class="QRadioButton" name="qt">
<property name="toolTip"> <property name="toolTip">
<string>This is VLC's default interface, with a native look and feel.</string> <string>This is VLC's default interface, with a native look and feel.</string>
</property> </property>
...@@ -674,7 +674,7 @@ ...@@ -674,7 +674,7 @@
</customwidgets> </customwidgets>
<tabstops> <tabstops>
<tabstop>language</tabstop> <tabstop>language</tabstop>
<tabstop>qt4</tabstop> <tabstop>qt</tabstop>
<tabstop>skins</tabstop> <tabstop>skins</tabstop>
<tabstop>fsController</tabstop> <tabstop>fsController</tabstop>
<tabstop>minimalviewBox</tabstop> <tabstop>minimalviewBox</tabstop>
......
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