Index: /trunk/src/VBox/Frontends/VirtualBox/src/selector/UIDesktopPane.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/selector/UIDesktopPane.cpp	(revision 68309)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/selector/UIDesktopPane.cpp	(revision 68310)
@@ -133,6 +133,4 @@
     UIDesktopPanePrivate(QWidget *pParent, QAction *pRefreshAction);
 
-    /** Assigns @a strText and switches to text pane. */
-    void setText(const QString &strText);
     /** Assigns @a strError and switches to error pane. */
     void setError(const QString &strError);
@@ -154,6 +152,4 @@
     void retranslateUi();
 
-    /** Prepares text pane. */
-    void prepareTextPane();
     /** Prepares error pane. */
     void prepareErrorPane();
@@ -163,7 +159,4 @@
 
 private:
-
-    /** Holds the text pane instance. */
-    QRichTextBrowser *m_pText;
 
     /** Holds the error pane container. */
@@ -467,5 +460,4 @@
 UIDesktopPanePrivate::UIDesktopPanePrivate(QWidget *pParent, QAction *pRefreshAction)
     : QIWithRetranslateUI<QStackedWidget>(pParent)
-    , m_pText(0)
     , m_pErrBox(0), m_pErrLabel(0), m_pErrText(0)
     , m_pRefreshButton(0), m_pRefreshAction(pRefreshAction)
@@ -474,16 +466,4 @@
     /* Translate finally: */
     retranslateUi();
-}
-
-void UIDesktopPanePrivate::setText(const QString &strText)
-{
-    /* Prepare text pane if necessary: */
-    prepareTextPane();
-
-    /* Assign corresponding text: */
-    m_pText->setText(strText);
-
-    /* Raise corresponding widget: */
-    setCurrentIndex(indexOf(m_pText));
 }
 
@@ -571,25 +551,4 @@
         m_pRefreshButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
     }
-}
-
-void UIDesktopPanePrivate::prepareTextPane()
-{
-    if (m_pText)
-        return;
-
-    /* Create text pane: */
-    m_pText = new QRichTextBrowser(this);
-    m_pText->setFocusPolicy(Qt::StrongFocus);
-    m_pText->document()->setDefaultStyleSheet("a { text-decoration: none; }");
-    /* Make text pane transparent: */
-    m_pText->setFrameShape(QFrame::NoFrame);
-    m_pText->viewport()->setAutoFillBackground(false);
-    m_pText->setOpenLinks(false);
-
-    /* Add into the stack: */
-    addWidget(m_pText);
-
-    /* Retranslate finally: */
-    retranslateUi();
 }
 
@@ -742,9 +701,4 @@
 }
 
-void UIDesktopPane::updateDetailsText(const QString &strText)
-{
-    m_pDesktopPrivate->setText(strText);
-}
-
 void UIDesktopPane::updateDetailsError(const QString &strError)
 {
Index: /trunk/src/VBox/Frontends/VirtualBox/src/selector/UIDesktopPane.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/selector/UIDesktopPane.h	(revision 68309)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/selector/UIDesktopPane.h	(revision 68310)
@@ -43,6 +43,4 @@
     UIDesktopPane(QAction *pRefreshAction = 0, QWidget *pParent = 0);
 
-    /** Updates @a strText details and switches to text details pane. */
-    void updateDetailsText(const QString &strText);
     /** Updates @a strError details and switches to error details pane. */
     void updateDetailsError(const QString &strError);
