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