Index: /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIProgressDialog.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIProgressDialog.cpp	(revision 71577)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIProgressDialog.cpp	(revision 71578)
@@ -5,5 +5,5 @@
 
 /*
- * Copyright (C) 2006-2017 Oracle Corporation
+ * Copyright (C) 2006-2018 Oracle Corporation
  *
  * This file is part of VirtualBox Open Source Edition (OSE), as
@@ -68,5 +68,5 @@
     UIProgressEventHandler(QObject *pParent, const CProgress &comProgress);
     /** Destructs event proxy object. */
-    ~UIProgressEventHandler();
+    virtual ~UIProgressEventHandler() /* override */;
 
 protected:
@@ -92,10 +92,10 @@
 
     /** Holds the progress wrapper. */
-    CProgress m_comProgress;
+    CProgress  m_comProgress;
 
     /** Holds the Qt event listener instance. */
-    ComObjPtr<UIMainEventListenerImpl> m_pQtListener;
+    ComObjPtr<UIMainEventListenerImpl>  m_pQtListener;
     /** Holds the COM event listener instance. */
-    CEventListener m_comEventListener;
+    CEventListener                      m_comEventListener;
 };
 
@@ -207,5 +207,5 @@
 const char *UIProgressDialog::m_spcszOpDescTpl = "%1 ... (%2/%3)";
 
-UIProgressDialog::UIProgressDialog(CProgress &progress,
+UIProgressDialog::UIProgressDialog(CProgress &comProgress,
                                    const QString &strTitle,
                                    QPixmap *pImage /* = 0 */,
@@ -213,5 +213,5 @@
                                    QWidget *pParent /* = 0 */)
     : QIWithRetranslateUI2<QIDialog>(pParent, Qt::MSWindowsFixedSizeDialogHint | Qt::WindowTitleHint)
-    , m_comProgress(progress)
+    , m_comProgress(comProgress)
     , m_strTitle(strTitle)
     , m_pImage(pImage)
@@ -317,5 +317,5 @@
 }
 
-void UIProgressDialog::timerEvent(QTimerEvent*)
+void UIProgressDialog::timerEvent(QTimerEvent *)
 {
     /* Call the timer event handling delegate: */
@@ -331,5 +331,5 @@
 }
 
-void UIProgressDialog::sltHandleProgressPercentageChange(QString /* strProgressId */, int iPercent)
+void UIProgressDialog::sltHandleProgressPercentageChange(QString, int iPercent)
 {
     /* New mode only: */
@@ -341,5 +341,5 @@
 }
 
-void UIProgressDialog::sltHandleProgressTaskComplete(QString /* strProgressId */)
+void UIProgressDialog::sltHandleProgressTaskComplete(QString)
 {
     /* New mode only: */
@@ -692,7 +692,7 @@
 *********************************************************************************************************************************/
 
-UIProgress::UIProgress(CProgress &progress, QObject *pParent /* = 0 */)
+UIProgress::UIProgress(CProgress &comProgress, QObject *pParent /* = 0 */)
     : QObject(pParent)
-    , m_comProgress(progress)
+    , m_comProgress(comProgress)
     , m_cOperations(m_comProgress.GetOperationCount())
     , m_fEnded(false)
@@ -732,5 +732,5 @@
 }
 
-void UIProgress::timerEvent(QTimerEvent*)
+void UIProgress::timerEvent(QTimerEvent *)
 {
     /* Make sure the UIProgress still 'running': */
@@ -765,3 +765,5 @@
 }
 
+
 #include "UIProgressDialog.moc"
+
Index: /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIProgressDialog.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIProgressDialog.h	(revision 71577)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIProgressDialog.h	(revision 71578)
@@ -5,5 +5,5 @@
 
 /*
- * Copyright (C) 2009-2017 Oracle Corporation
+ * Copyright (C) 2009-2018 Oracle Corporation
  *
  * This file is part of VirtualBox Open Source Edition (OSE), as
@@ -211,7 +211,8 @@
 
     /** Holds the personal event-loop instance. */
-    QPointer<QEventLoop> m_pEventLoop;
+    QPointer<QEventLoop>  m_pEventLoop;
 };
 
+
 #endif /* !___UIProgressDialog_h___ */
 
