Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationModel.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationModel.cpp	(revision 65332)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationModel.cpp	(revision 65333)
@@ -37,4 +37,5 @@
 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */
 
+
 UIInformationModel::UIInformationModel(QObject *pParent, const CMachine &machine, const CConsole &console)
     : QAbstractListModel(pParent)
@@ -42,5 +43,5 @@
     , m_console(console)
 {
-    /* Prepare information-model: */
+    /* Prepare: */
     prepare();
 }
@@ -112,5 +113,5 @@
 void UIInformationModel::updateData(UIInformationDataItem *pItem)
 {
-    /* Updates data: */
+    /* Update data: */
     AssertPtrReturnVoid(pItem);
     int iRow = m_list.indexOf(pItem);
Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationModel.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationModel.h	(revision 65332)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationModel.h	(revision 65333)
@@ -45,4 +45,5 @@
 class UIInformationDataItem;
 
+
 /** QAbstractListModel extension
   * providing GUI with information-model for view in session-information window. */
@@ -53,30 +54,31 @@
 public:
 
-    /** Constructs information-model passing @a pParent to base-class.
-      * @param machine is machine reference.
-      * @param console is machine console reference. */
+    /** Constructs information-model passing @a pParent to the base-class.
+      * @param  machine  Brings the machine reference.
+      * @param  console  Brings the machine console reference. */
     UIInformationModel(QObject *pParent, const CMachine &machine, const CConsole &console);
-
     /** Destructs information-model. */
     ~UIInformationModel();
 
-    /** Returns the row-count for item specified by @a parentIdx. */
+    /** Returns the row-count for item specified by the @a parentIdx. */
     int rowCount(const QModelIndex &parentIdx = QModelIndex()) const;
 
-    /** Returns data for item specified by @a idx for the @a role. */
+    /** Returns the data for item specified by the @a index and the @a role. */
     QVariant data(const QModelIndex &idx, int role = Qt::DisplayRole) const;
 
-    /** Adds the item. */
+    /** Adds the @a pItem into the model. */
     void addItem(UIInformationDataItem *pItem);
 
-    /** Updates Data. */
+    /** Updates the data for item specified by the @a index. */
     void updateData(const QModelIndex &idx);
 
 public slots:
+
+    /** Updates the data for the specified @a pItem. */
     void updateData(UIInformationDataItem *pItem);
 
 private:
 
-    /** Prepares information-model. */
+    /** Prepares all. */
     void prepare();
 
@@ -84,7 +86,7 @@
     QHash<int, QByteArray> roleNames() const;
 
-    /** Holds the machine instance. */
+    /** Holds the machine reference. */
     CMachine m_machine;
-    /** Holds the console instance. */
+    /** Holds the machine console reference. */
     CConsole m_console;
     /** Holds the list of instances of information-data items. */
