Commit 469f358d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Order initializers

parent a45ea5b1
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
#include <QMutex> #include <QMutex>
DialogHandler::DialogHandler (intf_thread_t *intf, QObject *_parent) DialogHandler::DialogHandler (intf_thread_t *intf, QObject *_parent)
: intf (intf), QObject( _parent ), : QObject( _parent ), intf (intf),
critical (VLC_OBJECT(intf), "dialog-critical"), critical (VLC_OBJECT(intf), "dialog-critical"),
login (VLC_OBJECT(intf), "dialog-login"), login (VLC_OBJECT(intf), "dialog-login"),
question (VLC_OBJECT(intf), "dialog-question"), question (VLC_OBJECT(intf), "dialog-question"),
...@@ -181,8 +181,8 @@ QVLCProgressDialog::QVLCProgressDialog (DialogHandler *parent, ...@@ -181,8 +181,8 @@ QVLCProgressDialog::QVLCProgressDialog (DialogHandler *parent,
struct dialog_progress_bar_t *data) struct dialog_progress_bar_t *data)
: QProgressDialog (qfu(data->message), : QProgressDialog (qfu(data->message),
data->cancel ? ("&" + qfu(data->cancel)) : 0, 0, 1000), data->cancel ? ("&" + qfu(data->cancel)) : 0, 0, 1000),
cancelled (false), handler (parent),
handler (parent) cancelled (false)
{ {
if (data->title != NULL) if (data->title != NULL)
setWindowTitle (qfu(data->title)); setWindowTitle (qfu(data->title));
......
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