Index: /trunk/src/VBox/Frontends/VirtualBox/src/VBoxLicenseViewer.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/VBoxLicenseViewer.cpp	(revision 35102)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/VBoxLicenseViewer.cpp	(revision 35103)
@@ -34,6 +34,6 @@
 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */
 
-VBoxLicenseViewer::VBoxLicenseViewer()
-    : QIWithRetranslateUI<QDialog>()
+VBoxLicenseViewer::VBoxLicenseViewer(QWidget *pParent /* = 0 */)
+    : QIWithRetranslateUI2<QDialog>(pParent)
     , mLicenseText (0)
     , mAgreeButton (0)
Index: /trunk/src/VBox/Frontends/VirtualBox/src/VBoxLicenseViewer.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/VBoxLicenseViewer.h	(revision 35102)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/VBoxLicenseViewer.h	(revision 35103)
@@ -31,5 +31,5 @@
  *  This class is used to show a user license under linux.
  */
-class VBoxLicenseViewer : public QIWithRetranslateUI<QDialog>
+class VBoxLicenseViewer : public QIWithRetranslateUI2<QDialog>
 {
     Q_OBJECT;
@@ -37,5 +37,5 @@
 public:
 
-    VBoxLicenseViewer();
+    VBoxLicenseViewer(QWidget *pParent = 0);
 
     int showLicenseFromFile(const QString &strLicenseFileName);
Index: /trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsExtension.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsExtension.cpp	(revision 35102)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsExtension.cpp	(revision 35103)
@@ -166,5 +166,5 @@
     {
         QString strLicense = extPackFile.GetLicense();
-        VBoxLicenseViewer licenseViewer;
+        VBoxLicenseViewer licenseViewer(pParent);
         if (licenseViewer.showLicenseFromString(strLicense) != QDialog::Accepted)
             return;
