Changeset 33742 in vbox
- Timestamp:
- Nov 3, 2010 5:42:35 PM (14 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/vm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsNetwork.cpp
r33686 r33742 344 344 break; 345 345 case KNetworkAttachmentType_Internal: 346 mCbAdapterName->insertItems (0, mParent-> intList());346 mCbAdapterName->insertItems (0, mParent->fullIntList()); 347 347 mCbAdapterName->setEditable (true); 348 348 mCbAdapterName->setCompleter (0); … … 696 696 } 697 697 698 return mIntList; 699 } 700 701 QStringList VBoxVMSettingsNetworkPage::fullIntList (bool aRefresh) 702 { 703 QStringList list (intList (aRefresh)); 698 704 /* Append network list with names from all the pages */ 699 QStringList list (mIntList);700 705 for (int index = 0; index < mTwAdapters->count(); ++ index) 701 706 { … … 709 714 } 710 715 } 711 712 716 return list; 713 717 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsNetwork.h
r33631 r33742 126 126 QStringList brgList (bool aRefresh = false); 127 127 QStringList intList (bool aRefresh = false); 128 QStringList fullIntList (bool aRefresh = false); 128 129 QStringList hoiList (bool aRefresh = false); 129 #ifdef VBOX_WITH_VDE130 QStringList vdeList (bool aRefresh = false);131 #endif132 130 133 131 protected:
Note:
See TracChangeset
for help on using the changeset viewer.