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

Qt4: close() slot problem fixed.

parent b5c33444
......@@ -82,7 +82,9 @@ VLMDialog::VLMDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
ui.buttonBox->addButton( closeButton, QDialogButtonBox::AcceptRole );
ui.buttonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
connect( mediatype, SIGNAL( currentIndexChanged( int ) ), slayout, SLOT( setCurrentIndex( int ) ) );
CONNECT( mediatype, currentIndexChanged( int ), slayout,
setCurrentIndex( int ) );
CONNECT( closeButton, clicked(), this, hide() );
}
......
......@@ -87,9 +87,6 @@ private:
QDateEdit *date;
QLabel *schetimelabel, *schedatelabel, *schetimerepeat;
QSpinBox *scherepeatnumber;
private slots:
void close();
};
#endif
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