Index: /trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsNetwork.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsNetwork.cpp	(revision 33741)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsNetwork.cpp	(revision 33742)
@@ -344,5 +344,5 @@
             break;
         case KNetworkAttachmentType_Internal:
-            mCbAdapterName->insertItems (0, mParent->intList());
+            mCbAdapterName->insertItems (0, mParent->fullIntList());
             mCbAdapterName->setEditable (true);
             mCbAdapterName->setCompleter (0);
@@ -696,6 +696,11 @@
     }
 
+    return mIntList;
+}
+
+QStringList VBoxVMSettingsNetworkPage::fullIntList (bool aRefresh)
+{
+    QStringList list (intList (aRefresh));
     /* Append network list with names from all the pages */
-    QStringList list (mIntList);
     for (int index = 0; index < mTwAdapters->count(); ++ index)
     {
@@ -709,5 +714,4 @@
         }
     }
-
     return list;
 }
Index: /trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsNetwork.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsNetwork.h	(revision 33741)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsNetwork.h	(revision 33742)
@@ -126,8 +126,6 @@
     QStringList brgList (bool aRefresh = false);
     QStringList intList (bool aRefresh = false);
+    QStringList fullIntList (bool aRefresh = false);
     QStringList hoiList (bool aRefresh = false);
-#ifdef VBOX_WITH_VDE
-    QStringList vdeList (bool aRefresh = false);
-#endif
 
 protected:
