Changeset 18553 in vbox
- Timestamp:
- Mar 30, 2009 3:06:49 PM (15 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
-
include/VBoxFrameBuffer.h (modified) (2 diffs)
-
src/VBoxFrameBuffer.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxFrameBuffer.h
r16469 r18553 60 60 ulong aWidth, ulong aHeight) : 61 61 QEvent ((QEvent::Type) VBoxDefs::ResizeEventType), 62 mPixelFormat (aPixelFormat), mVRAM (aVRAM), mBitsPerPixel (aBitsPerPixel),62 mPixelFormat (aPixelFormat), mVRAM (aVRAM), mBitsPerPixel (aBitsPerPixel), 63 63 mBytesPerLine (aBytesPerLine), mWidth (aWidth), mHeight (aHeight) {} 64 64 ulong pixelFormat() { return mPixelFormat; } … … 257 257 int mWdt; 258 258 int mHgt; 259 uint64_t mWinId; 259 260 260 261 #if defined (Q_OS_WIN32) -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxFrameBuffer.cpp
r16269 r18553 52 52 { 53 53 AssertMsg (mView, ("VBoxConsoleView must not be null\n")); 54 mWinId = (mView && mView->viewport()) ? (ULONG64) mView->viewport()->winId() : 0; 54 55 } 55 56 … … 142 143 if (!winId) 143 144 return E_POINTER; 144 *winId = (mView && mView->viewport()) ? (ULONG64) mView->viewport()->winId() : 0;145 *winId = mWinId; 145 146 return S_OK; 146 147 }
Note:
See TracChangeset
for help on using the changeset viewer.

