Changeset 17260 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Mar 3, 2009 9:16:15 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43608
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r17255 r17260 2671 2671 regExp.cap (1).toInt() : maxSnapShotIndex; 2672 2672 /* Traversing to the next child */ 2673 index = index.GetChildren() .GetItemAt (0);2673 index = index.GetChildren()[0]; 2674 2674 } 2675 2675 dlg.mLeName->setText (snapShotName.arg (maxSnapShotIndex + 1)); -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxSnapshotsWgt.cpp
r13580 r17260 800 800 } 801 801 802 CSnapshot Enumerator en = aSnapshot.GetChildren().Enumerate();803 while (en.HasMore())804 { 805 CSnapshot sn = en.GetNext();802 CSnapshotVector snapvec = aSnapshot.GetChildren(); 803 for (int i = 0; i < snapvec.size(); ++i) 804 { 805 CSnapshot sn = snapvec[i]; 806 806 populateSnapshots (sn, si); 807 807 }
Note:
See TracChangeset
for help on using the changeset viewer.