Index: /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIToolBar.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIToolBar.cpp	(revision 71526)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIToolBar.cpp	(revision 71527)
@@ -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
@@ -28,7 +28,7 @@
 # ifdef VBOX_WS_MAC
 #  include "VBoxUtils.h"
-# endif /* !VBOX_WITH_PRECOMPILED_HEADERS */
+# endif
 
-#endif /* VBOX_WS_MAC */
+#endif /* !VBOX_WITH_PRECOMPILED_HEADERS */
 
 
@@ -68,8 +68,9 @@
 void UIToolBar::updateLayout()
 {
-    /* There is a bug in Qt Cocoa which result in showing a "more arrow" when
-       the necessary size of the toolbar is increased. Also for some languages
-       the with doesn't match if the text increase. So manually adjust the size
-       after changing the text. */
+    // WORKAROUND:
+    // There is a bug in Qt Cocoa which result in showing a "more arrow" when
+    // the necessary size of the toolbar is increased. Also for some languages
+    // the with doesn't match if the text increase. So manually adjust the size
+    // after changing the text.
     QSizePolicy sp = sizePolicy();
     setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
@@ -88,6 +89,6 @@
 
 #ifdef VBOX_WS_MAC
-        setStyleSheet("QToolBar { border: 0px none black; }");
-#endif /* VBOX_WS_MAC */
+    setStyleSheet("QToolBar { border: 0px none black; }");
+#endif
 
     /* Configure tool-bar' layout: */
Index: /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIToolBar.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIToolBar.h	(revision 71526)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIToolBar.h	(revision 71527)
@@ -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
@@ -33,9 +33,8 @@
 public:
 
-    /** Constructor, passes @a pParent to the QToolBar constructor. */
+    /** Constructs tool-bar passing @a pParent to the base-class. */
     UIToolBar(QWidget *pParent = 0);
 
-    /** Defines whether tool-bar should use text-labels.
-      * Default value if @a false. */
+    /** Defines whether tool-bar should use text-labels. */
     void setUseTextLabels(bool fEnable);
 
@@ -51,5 +50,5 @@
 private:
 
-    /** Prepare routine. */
+    /** Prepares all. */
     void prepare();
 
@@ -59,2 +58,3 @@
 
 #endif /* !___UIToolBar_h___ */
+
