Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationConfiguration.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationConfiguration.cpp	(revision 65273)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationConfiguration.cpp	(revision 65274)
@@ -33,4 +33,5 @@
 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */
 
+
 UIInformationConfiguration::UIInformationConfiguration(QWidget *pParent, const CMachine &machine, const CConsole &console)
     : QWidget(pParent)
@@ -41,6 +42,6 @@
     , m_pView(0)
 {
-    /* Prepare main-layout: */
-    prepareMainLayout();
+    /* Prepare layout: */
+    prepareLayout();
 
     /* Prepare model: */
@@ -51,15 +52,13 @@
 }
 
-void UIInformationConfiguration::prepareMainLayout()
+void UIInformationConfiguration::prepareLayout()
 {
-    /* Create main-layout: */
-    m_pMainLayout = new QVBoxLayout;
+    /* Create layout: */
+    m_pMainLayout = new QVBoxLayout(this);
     AssertPtrReturnVoid(m_pMainLayout);
     {
-        /* Configure main-layout: */
+        /* Configure layout: */
         m_pMainLayout->setContentsMargins(2, 0, 0, 0);
         m_pMainLayout->setSpacing(0);
-        /* Set main-layout: */
-        setLayout(m_pMainLayout);
     }
 }
@@ -163,4 +162,5 @@
         /* Configure information-view: */
         m_pView->setResizeMode(QListView::Adjust);
+
         /* Create information-delegate item: */
         UIInformationItem *pItem = new UIInformationItem(m_pView);
@@ -170,11 +170,11 @@
             m_pView->setItemDelegate(pItem);
         }
-        /* Connect datachanged signal: */
-        connect(m_pModel, SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)),
-                m_pView, SLOT(updateData(const QModelIndex&, const QModelIndex&)));
+        /* Connect data changed signal: */
+        connect(m_pModel, SIGNAL(dataChanged(const QModelIndex &, const QModelIndex &)),
+                m_pView, SLOT(updateData(const QModelIndex &, const QModelIndex &)));
 
         /* Set model for view: */
         m_pView->setModel(m_pModel);
-        /* Add information-view to the main-layout: */
+        /* Add information-view to the layout: */
         m_pMainLayout->addWidget(m_pView);
     }
Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationConfiguration.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationConfiguration.h	(revision 65273)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationConfiguration.h	(revision 65274)
@@ -33,4 +33,5 @@
 class UIInformationModel;
 
+
 /** QWidget extension
   * providing GUI with configuration-information tab in session-information window. */
@@ -48,6 +49,6 @@
 private:
 
-    /** Prepares main-layout. */
-    void prepareMainLayout();
+    /** Prepares layout. */
+    void prepareLayout();
 
     /** Prepares model. */
Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationRuntime.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationRuntime.cpp	(revision 65273)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationRuntime.cpp	(revision 65274)
@@ -33,4 +33,5 @@
 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */
 
+
 UIInformationRuntime::UIInformationRuntime(QWidget *pParent, const CMachine &machine, const CConsole &console)
     : QWidget(pParent)
@@ -41,5 +42,5 @@
     , m_pView(0)
 {
-    /* Prepare main-layout: */
+    /* Prepare layout: */
     prepareLayout();
 
@@ -53,13 +54,11 @@
 void UIInformationRuntime::prepareLayout()
 {
-    /* Create main-layout: */
+    /* Create layout: */
     m_pMainLayout = new QVBoxLayout(this);
     AssertPtrReturnVoid(m_pMainLayout);
     {
-        /* Configure main-layout: */
+        /* Configure layout: */
         m_pMainLayout->setContentsMargins(2, 0, 0, 0);
         m_pMainLayout->setSpacing(0);
-        /* Set main-layout: */
-        setLayout(m_pMainLayout);
     }
 }
@@ -67,30 +66,31 @@
 void UIInformationRuntime::prepareModel()
 {
-    /* Create model: */
+    /* Create information-model: */
     m_pModel = new UIInformationModel(this, m_machine, m_console);
     AssertPtrReturnVoid(m_pModel);
+    {
+        /* Create runtime-attributes data-item: */
+        UIInformationDataRuntimeAttributes *pGeneral = new UIInformationDataRuntimeAttributes(m_machine, m_console, m_pModel);
+        AssertPtrReturnVoid(pGeneral);
+        {
+            /* Add runtime-attributes data-item to model: */
+            m_pModel->addItem(pGeneral);
+        }
 
-    /* Create runtime-attributes item: */
-    UIInformationDataRuntimeAttributes *pGeneral = new UIInformationDataRuntimeAttributes(m_machine, m_console, m_pModel);
-    AssertPtrReturnVoid(pGeneral);
-    {
-        /* Add runtime-attributes item to model: */
-        m_pModel->addItem(pGeneral);
-    }
+        /* Create network-statistics data-item: */
+        UIInformationDataNetworkStatistics *pNetwork = new UIInformationDataNetworkStatistics(m_machine, m_console, m_pModel);
+        AssertPtrReturnVoid(pNetwork);
+        {
+            /* Add network-statistics data-item to model: */
+            m_pModel->addItem(pNetwork);
+        }
 
-    /* Create network-statistics item: */
-    UIInformationDataNetworkStatistics *pNetwork = new UIInformationDataNetworkStatistics(m_machine, m_console, m_pModel);
-    AssertPtrReturnVoid(pNetwork);
-    {
-        /* Add network-statistics item to model: */
-        m_pModel->addItem(pNetwork);
-    }
-
-    /* Create storage-statistics item: */
-    UIInformationDataStorageStatistics *pStorage = new UIInformationDataStorageStatistics(m_machine, m_console, m_pModel);
-    AssertPtrReturnVoid(pStorage);
-    {
-        /* Add storage-statistics item to model: */
-        m_pModel->addItem(pStorage);
+        /* Create storage-statistics data-item: */
+        UIInformationDataStorageStatistics *pStorage = new UIInformationDataStorageStatistics(m_machine, m_console, m_pModel);
+        AssertPtrReturnVoid(pStorage);
+        {
+            /* Add storage-statistics data-item to model: */
+            m_pModel->addItem(pStorage);
+        }
     }
 }
@@ -98,25 +98,25 @@
 void UIInformationRuntime::prepareView()
 {
-    /* Create view: */
+    /* Create information-view: */
     m_pView = new UIInformationView;
     AssertPtrReturnVoid(m_pView);
     {
-        /* Configure view: */
+        /* Configure information-view: */
         m_pView->setResizeMode(QListView::Adjust);
 
         /* Create information-delegate item: */
-        UIInformationItem* pItem = new UIInformationItem(m_pView);
+        UIInformationItem *pItem = new UIInformationItem(m_pView);
         AssertPtrReturnVoid(pItem);
         {
-            /* Set item-delegate: */
+            /* Set item-delegate for information-view: */
             m_pView->setItemDelegate(pItem);
         }
-        /* Connect datachanged signal: */
-        connect(m_pModel, SIGNAL(dataChanged(const QModelIndex, const QModelIndex)),
-                m_pView, SLOT(updateData(const QModelIndex,const QModelIndex)));
+        /* Connect data changed signal: */
+        connect(m_pModel, SIGNAL(dataChanged(const QModelIndex &, const QModelIndex &)),
+                m_pView, SLOT(updateData(const QModelIndex &, const QModelIndex &)));
 
-        /* Set model: */
+        /* Set model for view: */
         m_pView->setModel(m_pModel);
-        /* Layout view: */
+        /* Add information-view to the layout: */
         m_pMainLayout->addWidget(m_pView);
     }
Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationRuntime.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationRuntime.h	(revision 65273)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationRuntime.h	(revision 65274)
@@ -28,9 +28,10 @@
 #include "CConsole.h"
 
-/* Forward declartions: */
-class UIVMItem;
+/* Forward declarations: */
 class QVBoxLayout;
 class UIInformationView;
 class UIInformationModel;
+class UIVMItem;
+
 
 /** QWidget extension
@@ -49,5 +50,5 @@
 private:
 
-    /** Prepares main-layout. */
+    /** Prepares layout. */
     void prepareLayout();
 
