Changeset 26586 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Feb 16, 2010 4:48:48 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57774
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleView.cpp
r26579 r26586 1265 1265 1266 1266 VBoxResizeEvent *re = (VBoxResizeEvent *) e; 1267 LogFlow (("VBoxDefs::ResizeEventType: %d x %d x %d bpp\n", 1268 re->width(), re->height(), re->bitsPerPixel())); 1269 #ifdef DEBUG_michael 1270 LogRel (("Resize event from guest: %d x %d x %d bpp\n", 1271 re->width(), re->height(), re->bitsPerPixel())); 1272 #endif 1273 1274 bool notifyManiWnd = mStoredConsoleSize.width() != (int)re->width() 1275 || mStoredConsoleSize.height() != (int)re->height(); 1267 LogRelFlowFunc (("VBoxDefs::ResizeEventType: %d x %d x %d bpp\n", 1268 re->width(), re->height(), 1269 re->bitsPerPixel())); 1270 1271 bool notifyMainWnd = mFrameBuf->width() != re->width() 1272 || mFrameBuf->height() != re->height(); 1276 1273 1277 1274 /* Store the new size to prevent unwanted resize hints being … … 1361 1358 } 1362 1359 1363 if (notifyMa niWnd)1360 if (notifyMainWnd) 1364 1361 mMainWnd->onDisplayResize (re->width(), re->height()); 1365 1362
Note:
See TracChangeset
for help on using the changeset viewer.