Changeset 42350 in vbox
- Timestamp:
- Jul 24, 2012 11:35:32 AM (12 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r42323 r42350 151 151 break; 152 152 } 153 154 /* Prepare common things: */ 155 pMachineView->prepareCommon(); 156 157 /* Prepare event-filters: */ 158 pMachineView->prepareFilters(); 159 160 /* Prepare connections: */ 161 pMachineView->prepareConnections(); 162 163 /* Prepare console connections: */ 164 pMachineView->prepareConsoleConnections(); 165 166 /* Initialization: */ 153 167 pMachineView->sltMachineStateChanged(); 154 168 /** @todo Can we move the call to sltAdditionsStateChanged() from the … … 156 170 * but not for Fullscreen and Scale. However for Scale it is a no op., 157 171 * so it would not hurt. Would it hurt for Fullscreen? */ 172 158 173 return pMachineView; 159 174 } … … 275 290 /* Prepare frame buffer: */ 276 291 prepareFrameBuffer(); 277 278 /* Prepare common things: */279 prepareCommon();280 281 /* Prepare event-filters: */282 prepareFilters();283 284 /* Prepare connections: */285 prepareConnections();286 287 /* Prepare console connections: */288 prepareConsoleConnections();289 292 } 290 293 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.h
r42318 r42350 111 111 112 112 /* Prepare routines: */ 113 v irtual void prepareViewport();114 v irtual void prepareFrameBuffer();113 void prepareViewport(); 114 void prepareFrameBuffer(); 115 115 virtual void prepareCommon(); 116 116 virtual void prepareFilters(); 117 117 virtual void prepareConnections(); 118 118 virtual void prepareConsoleConnections(); 119 v irtual void loadMachineViewSettings();119 void loadMachineViewSettings(); 120 120 121 121 /* Cleanup routines: */
Note:
See TracChangeset
for help on using the changeset viewer.