Changeset 36247 in vbox for trunk/src/VBox/Main
- Timestamp:
- Mar 10, 2011 10:20:35 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70479
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r36179 r36247 676 676 * Handles guest properties on a VM reset. 677 677 * At the moment we only delete properties which have the flag 678 * "TRANS IENT_RESET".678 * "TRANSRESET". 679 679 */ 680 680 void Console::guestPropertiesHandleVMReset(void) … … 693 693 for (size_t i = 0; i < arrFlags.size(); i++) 694 694 { 695 /* Delete all properties which have the flag "TRANS IENT_RESET". */696 if (Utf8Str(arrFlags[i]).contains("TRANS IENT_RESET", Utf8Str::CaseInsensitive))695 /* Delete all properties which have the flag "TRANSRESET". */ 696 if (Utf8Str(arrFlags[i]).contains("TRANSRESET", Utf8Str::CaseInsensitive)) 697 697 { 698 698 hrc = mMachine->SetGuestProperty(arrNames[i], Bstr("").raw() /* Value */,
Note:
See TracChangeset
for help on using the changeset viewer.