Index: /trunk/src/VBox/Debugger/VBoxDbgStatsQt4.cpp
===================================================================
--- /trunk/src/VBox/Debugger/VBoxDbgStatsQt4.cpp	(revision 54095)
+++ /trunk/src/VBox/Debugger/VBoxDbgStatsQt4.cpp	(revision 54096)
@@ -3032,5 +3032,12 @@
     : VBoxDbgBaseWindow(a_pDbgGui, pParent), m_PatStr(pszPat), m_pPatCB(NULL), m_uRefreshRate(0), m_pTimer(NULL), m_pView(NULL)
 {
-    setWindowTitle("VBoxDbg - Statistics");
+    /* Assign window-title: */
+    if (parent())
+    {
+        setWindowTitle(QString("%1 - Statistics").arg(parentWidget()->windowTitle()));
+        parent()->installEventFilter(this);
+    }
+    else
+        setWindowTitle("VBoxDbg - Statistics");
 
     /*
@@ -3144,4 +3151,22 @@
 
 
+bool VBoxDbgStats::eventFilter(QObject *pWatched, QEvent *pEvent)
+{
+    /* Skip events which are not related to our parent: */
+    if (pWatched != parent())
+        return VBoxDbgBaseWindow::eventFilter(pWatched, pEvent);
+
+    /* Depending on event-type: */
+    switch (pEvent->type())
+    {
+        case QEvent::WindowTitleChange: setWindowTitle(QString("%1 - Statistics").arg(parentWidget()->windowTitle())); break;
+        default: break;
+    }
+
+    /* Call to base-class: */
+    return VBoxDbgBaseWindow::eventFilter(pWatched, pEvent);
+}
+
+
 void
 VBoxDbgStats::apply(const QString &Str)
Index: /trunk/src/VBox/Debugger/VBoxDbgStatsQt4.h
===================================================================
--- /trunk/src/VBox/Debugger/VBoxDbgStatsQt4.h	(revision 54095)
+++ /trunk/src/VBox/Debugger/VBoxDbgStatsQt4.h	(revision 54096)
@@ -201,4 +201,12 @@
     virtual void closeEvent(QCloseEvent *a_pCloseEvt);
 
+    /**
+     * Event filter for various purposes.
+     *
+     * @param  pWatched         The object event came to.
+     * @param  pEvent           The event being handled.
+     */
+    virtual bool eventFilter(QObject *pWatched, QEvent *pEvent);
+
 protected slots:
     /** Apply the activated combobox pattern. */
