- Timestamp:
- Nov 4, 2009 12:51:39 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r24316 r24323 3767 3767 ULONG ulCurInst = (*it)->instance(); 3768 3768 3769 if (ulCurInst > ulInstance) 3770 ulInstance = ulCurInst; 3771 } 3772 } 3773 if (ulInstance) 3774 ulInstance++; 3769 if (ulCurInst >= ulInstance) 3770 ulInstance = ulCurInst + 1; 3771 } 3772 } 3775 3773 3776 3774 rc = ctrl->init(this, aName, aConnectionType, ulInstance);
Note:
See TracChangeset
for help on using the changeset viewer.