- Timestamp:
- Aug 2, 2010 11:40:32 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64311
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.cpp
r30546 r31284 98 98 /* Save window settings: */ 99 99 saveWindowSettings(); 100 101 /* Cleanup mini tool-bar: */ 102 cleanupMiniToolBar(); 100 103 101 104 /* Prepare handlers: */ … … 259 262 } 260 263 264 void UIMachineWindowFullscreen::cleanupMiniToolBar() 265 { 266 if (m_pMiniToolBar) 267 { 268 delete m_pMiniToolBar; 269 m_pMiniToolBar = 0; 270 } 271 } 272 261 273 void UIMachineWindowFullscreen::cleanupMenu() 262 274 { -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.h
r30213 r31284 75 75 void saveWindowSettings(); 76 76 void cleanupMachineView(); 77 //void cleanupMiniToolBar() {}77 void cleanupMiniToolBar(); 78 78 void cleanupMenu(); 79 79 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineWindowSeamless.cpp
r30546 r31284 77 77 prepareHandlers(); 78 78 79 #ifndef Q_WS_MAC 79 80 /* Prepare mini tool-bar: */ 80 #ifndef Q_WS_MAC81 81 prepareMiniToolBar(); 82 82 #endif /* Q_WS_MAC */ … … 101 101 /* Save window settings: */ 102 102 saveWindowSettings(); 103 104 #ifndef Q_WS_MAC 105 /* Cleanup mini tool-bar: */ 106 cleanupMiniToolBar(); 107 #endif /* Q_WS_MAC */ 103 108 104 109 /* Prepare handlers: */ … … 319 324 } 320 325 326 #ifndef Q_WS_MAC 327 void UIMachineWindowSeamless::cleanupMiniToolBar() 328 { 329 if (m_pMiniToolBar) 330 { 331 delete m_pMiniToolBar; 332 m_pMiniToolBar = 0; 333 } 334 } 335 #endif /* Q_WS_MAC */ 336 321 337 void UIMachineWindowSeamless::cleanupMenu() 322 338 { -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineWindowSeamless.h
r30213 r31284 89 89 void cleanupMachineView(); 90 90 #ifndef Q_WS_MAC 91 //void cleanupMiniToolBar() {}91 void cleanupMiniToolBar(); 92 92 #endif /* Q_WS_MAC */ 93 93 void cleanupMenu();
Note:
See TracChangeset
for help on using the changeset viewer.