Index: /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoConfigurationPanel.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoConfigurationPanel.h	(revision 76944)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoConfigurationPanel.h	(revision 76945)
@@ -24,5 +24,4 @@
 /* GUI includes: */
 #include "UIVisoCreatorPanel.h"
-#include "UIVisoCreatorDefs.h"
 
 /* Forward declarations: */
Index: /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.h	(revision 76944)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.h	(revision 76945)
@@ -33,5 +33,4 @@
 #include "QIMainDialog.h"
 #include "QIWithRetranslateUI.h"
-#include "UIVisoCreatorDefs.h"
 
 /* Forward declarations: */
@@ -80,4 +79,19 @@
 
 private:
+    struct VisoOptions
+    {
+        VisoOptions()
+            :m_strVisoName("ad-hoc-viso"){}
+        QString m_strVisoName;
+        /** Additions viso options to be inserted to the viso file as separate lines. */
+        QStringList m_customOptions;
+    };
+
+    struct BrowserOptions
+    {
+        BrowserOptions()
+            :m_fShowHiddenObjects(true){}
+        bool m_fShowHiddenObjects;
+    };
 
     void prepareObjects();
Index: unk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreatorDefs.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreatorDefs.h	(revision 76944)
+++ 	(revision )
@@ -1,52 +1,0 @@
-/* $Id$ */
-/** @file
- * VBox Qt GUI - UIVisoCreatorDefs class declaration.
- */
-
-/*
- * Copyright (C) 2006-2019 Oracle Corporation
- *
- * This file is part of VirtualBox Open Source Edition (OSE), as
- * available from http://www.virtualbox.org. This file is free software;
- * you can redistribute it and/or modify it under the terms of the GNU
- * General Public License (GPL) as published by the Free Software
- * Foundation, in version 2 as it comes in the "COPYING" file of the
- * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
- * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
- */
-
-#ifndef FEQT_INCLUDED_SRC_medium_viso_UIVisoCreatorDefs_h
-#define FEQT_INCLUDED_SRC_medium_viso_UIVisoCreatorDefs_h
-#ifndef RT_WITHOUT_PRAGMA_ONCE
-# pragma once
-#endif
-
-
-struct VisoOptions
-{
-    VisoOptions()
-        :m_strVisoName("ad-hoc-viso"){}
-    bool operator==(const VisoOptions &otherOptions) const
-    {
-        return (m_strVisoName == otherOptions.m_strVisoName) &&
-            (m_customOptions == otherOptions.m_customOptions);
-    }
-    QString m_strVisoName;
-    /** Additions viso options to be inserted to the viso file as separate lines. */
-    QStringList m_customOptions;
-};
-
-struct BrowserOptions
-{
-    BrowserOptions()
-        :m_fShowHiddenObjects(true){}
-    bool operator==(const BrowserOptions &otherOptions) const
-    {
-        return m_fShowHiddenObjects == otherOptions.m_fShowHiddenObjects;
-    }
-    bool m_fShowHiddenObjects;
-};
-
-
-
-#endif /* !FEQT_INCLUDED_SRC_medium_viso_UIVisoCreatorDefs_h */
Index: /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreatorOptionsPanel.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreatorOptionsPanel.h	(revision 76944)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreatorOptionsPanel.h	(revision 76945)
@@ -29,6 +29,4 @@
 #include "UIVisoCreatorPanel.h"
 #include "QIWithRetranslateUI.h"
-#include "UIVisoCreatorDefs.h"
-
 
 class UIVisoCreatorOptionsPanel : public UIVisoCreatorPanel
