Commit 42e7ea08 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - Cleanups on dialog and public=>private.

parent 8b04e33a
......@@ -39,12 +39,12 @@ public:
return instance;
}
virtual ~GotoTimeDialog();
QTimeEdit *timeEdit;
private:
GotoTimeDialog( intf_thread_t *);
static GotoTimeDialog *instance;
public slots:
QTimeEdit *timeEdit;
private slots:
void close();
void cancel();
};
......
......@@ -57,6 +57,7 @@ private:
QLineEdit *inputEdit, *loginEdit, *passwordEdit;
void Finish( int );
private slots:
void defaultB();
void altB();
......
......@@ -204,7 +204,7 @@ void MediaInfoDialog::close()
MP->setEditMode( false );
}
void MediaInfoDialog::updateButtons( int i_tab )
void MediaInfoDialog::( int i_tab )
{
if( MP->isInEditMode() && i_tab == 0 )
saveMetaButton->show();
......
......@@ -74,14 +74,15 @@ private:
public slots:
void update();
void saveMeta();
void editMeta();
void update( input_item_t *, bool, bool );
void updateButtons( int i_tab );
private slots:
void close();
void clear();
void saveMeta();
void editMeta();
void updateButtons( int i_tab );
};
#endif
......@@ -179,4 +179,3 @@ bool MessagesDialog::save()
}
return false;
}
......@@ -49,7 +49,7 @@ private:
static MessagesDialog *instance;
QSpinBox *verbosityBox;
QTextEdit *messages;
public slots:
private slots:
void updateLog();
void close();
void clear();
......
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