Mercurial > hg > svgui
changeset 1268:05d12869043e
Formatting changes to align more with SV style conventions
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Tue, 17 Apr 2018 10:47:38 +0100 |
parents | b68f3162b5a8 |
children | f2894944c6b8 |
files | widgets/ProgressDialog.cpp widgets/ProgressDialog.h |
diffstat | 2 files changed, 10 insertions(+), 14 deletions(-) [+] |
line wrap: on
line diff
--- 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 <QApplication> #include <QTimer> -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)
--- 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;