# HG changeset patch # User Lucas Thompson # Date 1523958458 -3600 # Node ID 05d12869043e887618d712da66867343ad4c66b3 # Parent b68f3162b5a85b3bdc6899887cf132f87dca3b2b Formatting changes to align more with SV style conventions diff -r b68f3162b5a8 -r 05d12869043e widgets/ProgressDialog.cpp --- a/widgets/ProgressDialog.cpp Tue Apr 17 10:47:14 2018 +0100 +++ b/widgets/ProgressDialog.cpp Tue Apr 17 10:47:38 2018 +0100 @@ -19,13 +19,11 @@ #include #include -ProgressDialog::ProgressDialog( - QString message, - bool cancellable, - int timeBeforeShow, - QWidget *parent, - Qt::WindowModality modality -) : +ProgressDialog::ProgressDialog(QString message, + bool cancellable, + int timeBeforeShow, + QWidget *parent, + Qt::WindowModality modality) : m_showTimer(0), m_timerElapsed(false), m_cancelled(false) diff -r b68f3162b5a8 -r 05d12869043e widgets/ProgressDialog.h --- a/widgets/ProgressDialog.h Tue Apr 17 10:47:14 2018 +0100 +++ b/widgets/ProgressDialog.h Tue Apr 17 10:47:38 2018 +0100 @@ -25,13 +25,11 @@ Q_OBJECT public: - ProgressDialog( - QString message, - bool cancellable, - int timeBeforeShow = 0, - QWidget *parent = 0, - Qt::WindowModality modality = Qt::NonModal - ); + ProgressDialog(QString message, + bool cancellable, + int timeBeforeShow = 0, + QWidget *parent = 0, + Qt::WindowModality modality = Qt::NonModal); virtual ~ProgressDialog(); virtual bool isDefinite() const;