Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationItem.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationItem.cpp	(revision 65326)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationItem.cpp	(revision 65327)
@@ -33,4 +33,5 @@
 
 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */
+
 
 UIInformationItem::UIInformationItem(QObject *pParent)
@@ -106,5 +107,5 @@
     /* Update data: */
     updateData(index);
-
+    /* If there is something to paint: */
     if (m_text.count() != 0)
     {
Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationItem.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationItem.h	(revision 65326)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationItem.h	(revision 65327)
@@ -34,9 +34,10 @@
 class QTextDocument;
 
-/* Typedefs: */
+/* Type definitions: */
 typedef QPair<QString, QString> UITextTableLine;
 typedef QList<UITextTableLine> UITextTable;
 
 Q_DECLARE_METATYPE(UITextTable);
+
 
 /** QStyledItemDelegate extension
@@ -48,5 +49,5 @@
 public:
 
-    /** Constructs information-item by passing @a pParent to the base-class. */
+    /** Constructs information-item passing @a pParent to the base-class. */
     UIInformationItem(QObject *pParent = 0);
 
@@ -59,20 +60,21 @@
     /** Returns the text-data of information-item. */
     const UITextTable& text() const;
-    /** Defines the text-data of information-item. */
+    /** Defines the text-data of information-item as @a text. */
     void setText(const UITextTable &text) const;
 
-    /** Paint routine. */
+    /** Performs painting for @a index using @a pPainter and @a option set. */
     void paint(QPainter *pPainter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
 
-    /** Size-hint calculation routine. */
+    /** Calculates size-hint for @a index using @a option set. */
     QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
 
-    /** Updates data for the item with @a index. */
+    /** Updates data for information-item with @a index. */
     void updateData(const QModelIndex &index) const;
 
-    /** returns html data. */
+    /** Returns html data. */
     QString htmlData();
 
 private:
+
     /** Updates text-layout. */
     void updateTextLayout() const;
