Commit 8b0e6890 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - Remove preferences button from interface. Remove unuseful debug.

parent 669689e0
...@@ -457,13 +457,6 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) : ...@@ -457,13 +457,6 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
setupSmallButton( extSettingsButton ); setupSmallButton( extSettingsButton );
controlLayout->addWidget( extSettingsButton, 3, 12 ); controlLayout->addWidget( extSettingsButton, 3, 12 );
/** Preferences **/
QPushButton *prefsButton = new QPushButton( "P" );
BUTTON_SET_ACT( prefsButton, "P", qtr( "Preferences / Settings" ),
prefs() );
setupSmallButton( prefsButton );
controlLayout->addWidget( prefsButton, 3, 13 );
controlLayout->setColumnStretch( 14, 5 ); controlLayout->setColumnStretch( 14, 5 );
/* Volume */ /* Volume */
...@@ -616,10 +609,6 @@ void ControlsWidget::extSettings() ...@@ -616,10 +609,6 @@ void ControlsWidget::extSettings()
{ {
THEDP->extendedDialog(); THEDP->extendedDialog();
} }
void ControlsWidget::prefs()
{
THEDP->prefsDialog();
}
void ControlsWidget::slower() void ControlsWidget::slower()
{ {
......
...@@ -170,7 +170,6 @@ private slots: ...@@ -170,7 +170,6 @@ private slots:
void updateVolume( int ); void updateVolume( int );
void fullscreen(); void fullscreen();
void extSettings(); void extSettings();
void prefs();
void faster(); void faster();
void slower(); void slower();
void toggleAdvanced(); void toggleAdvanced();
......
...@@ -675,7 +675,6 @@ void MainInterface::setDisplayPosition( float pos, int time, int length ) ...@@ -675,7 +675,6 @@ void MainInterface::setDisplayPosition( float pos, int time, int length )
void MainInterface::toggleTimeDisplay() void MainInterface::toggleTimeDisplay()
{ {
msg_Dbg( p_intf, "coincoin" );
b_remainingTime = ( b_remainingTime ? false : true ); b_remainingTime = ( b_remainingTime ? false : true );
} }
......
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