Changeset 55214 in vbox for trunk/src/VBox/Frontends/VBoxBalloonCtrl
- Timestamp:
- Apr 13, 2015 3:53:01 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99520
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBalloonCtrl/VBoxModAPIMonitor.cpp
r43738 r55214 1 2 1 /* $Id$ */ 3 2 /** @file … … 6 5 7 6 /* 8 * Copyright (C) 2012 Oracle Corporation7 * Copyright (C) 2012-2015 Oracle Corporation 9 8 * 10 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 214 213 ComPtr<IConsole> console; 215 214 CHECK_ERROR_BREAK(g_pSession, COMGETTER(Console)(console.asOutParam())); 215 /* Get the associated session machine. */ 216 ComPtr<IMachine> sessionMachine; 217 CHECK_ERROR_BREAK(g_pSession, COMGETTER(Machine)(sessionMachine.asOutParam())); 216 218 217 219 ComPtr<IProgress> progress; … … 269 271 } 270 272 271 CHECK_ERROR( console, SaveState(progress.asOutParam()));273 CHECK_ERROR(sessionMachine, SaveState(progress.asOutParam())); 272 274 if (SUCCEEDED(rc)) 273 275 {
Note:
See TracChangeset
for help on using the changeset viewer.