Changeset 26980 in vbox for trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
- Timestamp:
- Mar 2, 2010 11:30:00 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r26835 r26980 79 79 #include "MouseImpl.h" 80 80 #include "KeyboardImpl.h" 81 #include "VMMDev Interface.h"81 #include "VMMDev.h" 82 82 #include "StatusImpl.h" 83 83 #include "Framebuffer.h" … … 127 127 PVM gpVM = NULL; 128 128 Mouse *gMouse = NULL; 129 VMDisplay *gDisplay = NULL;129 Display *gDisplay = NULL; 130 130 Keyboard *gKeyboard = NULL; 131 131 VMMDev *gVMMDev = NULL; … … 793 793 goto leave; 794 794 gVMMDev = new VMMDev(); 795 gDisplay = new VMDisplay();795 gDisplay = new Display(); 796 796 #if defined(USE_SDL) 797 797 /* First console, then framebuffer!! */ … … 1334 1334 return rc; 1335 1335 1336 rc = pCallbacks->pfnRegister(pCallbacks, & VMDisplay::DrvReg);1336 rc = pCallbacks->pfnRegister(pCallbacks, &Display::DrvReg); 1337 1337 AssertRC(rc); 1338 1338 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.