diff --git a/modules/gui/qt4/components/simple_preferences.cpp b/modules/gui/qt4/components/simple_preferences.cpp
index 14c68729fc4a512d98657a94b65d396e2e3251e7..3ff0087ea2f61b9adcdb48f3a743c48b057c1aa6 100644
--- a/modules/gui/qt4/components/simple_preferences.cpp
+++ b/modules/gui/qt4/components/simple_preferences.cpp
@@ -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 ) );
diff --git a/modules/gui/qt4/ui/sprefs_interface.ui b/modules/gui/qt4/ui/sprefs_interface.ui
index c0fcb917288539a9eacce41a4ca233d1f3226f03..a372240306741836e54cd6139046735f13db28d0 100644
--- a/modules/gui/qt4/ui/sprefs_interface.ui
+++ b/modules/gui/qt4/ui/sprefs_interface.ui
@@ -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>