Changeset 24545 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 10, 2009 1:23:34 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxMedium.cpp
r24294 r24545 208 208 209 209 CSnapshot snapshot = machine.GetSnapshot (*jt); 210 if (!snapshots.isNull()) 211 snapshots += ", "; 212 snapshots += snapshot.GetName(); 210 if (!snapshot.isNull()) // can be NULL while takeSnaphot is in progress 211 { 212 if (!snapshots.isNull()) 213 snapshots += ", "; 214 snapshots += snapshot.GetName(); 215 } 213 216 } 214 217
Note:
See TracChangeset
for help on using the changeset viewer.