summaryrefslogtreecommitdiff
path: root/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2010-03-02 23:30:00 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2010-03-02 23:30:00 +0000
commit7474c5c19570c86dc4324e3dbfbe89f04630ed2e (patch)
treeaf395793be60928cd029761262bcddaca6aebe9f /src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
parent082765c9816cfd9a1b63705997d8f8420b15eec7 (diff)
downloadVirtualBox-svn-7474c5c19570c86dc4324e3dbfbe89f04630ed2e.tar.gz
FE/BFE: more clean-up to reduce the difference between MouseImpl.cpp in Main and VBoxBFE
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@26980 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp')
-rw-r--r--src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp b/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
index 2ef77f281fb..934f0f8017b 100644
--- a/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
+++ b/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
@@ -78,7 +78,7 @@ using namespace com;
#include "DisplayImpl.h"
#include "MouseImpl.h"
#include "KeyboardImpl.h"
-#include "VMMDevInterface.h"
+#include "VMMDev.h"
#include "StatusImpl.h"
#include "Framebuffer.h"
#include "MachineDebuggerImpl.h"
@@ -126,7 +126,7 @@ static DECLCALLBACK(int) VMPowerUpThread(RTTHREAD Thread, void *pvUser);
PVM gpVM = NULL;
Mouse *gMouse = NULL;
-VMDisplay *gDisplay = NULL;
+Display *gDisplay = NULL;
Keyboard *gKeyboard = NULL;
VMMDev *gVMMDev = NULL;
Framebuffer *gFramebuffer = NULL;
@@ -792,7 +792,7 @@ extern "C" DECLEXPORT(int) TrustedMain (int argc, char **argv, char **envp)
if (FAILED(gMouse->FinalConstruct()))
goto leave;
gVMMDev = new VMMDev();
- gDisplay = new VMDisplay();
+ gDisplay = new Display();
#if defined(USE_SDL)
/* First console, then framebuffer!! */
gConsole = new SDLConsole();
@@ -1333,7 +1333,7 @@ DECLCALLBACK(int) VBoxDriversRegister(PCPDMDRVREGCB pCallbacks, uint32_t u32Vers
if (RT_FAILURE(rc))
return rc;
- rc = pCallbacks->pfnRegister(pCallbacks, &VMDisplay::DrvReg);
+ rc = pCallbacks->pfnRegister(pCallbacks, &Display::DrvReg);
AssertRC(rc);
if (RT_FAILURE(rc))
return rc;