Changeset 99825 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- May 17, 2023 12:35:01 PM (19 months ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.cpp
r99623 r99825 3028 3028 return VBGHDisplayServerTypeIsXAvailable(m_enmDisplayServerType); 3029 3029 } 3030 #endif 3030 3031 VBGHDISPLAYSERVERTYPE UICommon::displayServerType() const 3032 { 3033 return m_enmDisplayServerType; 3034 } 3035 #endif -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.h
r99623 r99825 217 217 /** Returns true if the detected display server type is either xorg or xwayland. */ 218 218 bool X11ServerAvailable() const; 219 /** Returns display server type. */ 220 VBGHDISPLAYSERVERTYPE displayServerType() const; 219 221 #endif 220 222 /** @} */ -
trunk/src/VBox/Frontends/VirtualBox/src/platform/x11/XKeyboard-new.cpp
r98103 r99825 246 246 LogRel3(("VBoxKeyboard: converting keycode %d to scancode %s0x%x\n", 247 247 iDetail, iKey > 0x100 ? "0xe0 " : "", iKey & 0xff)); 248 printf("detail %d iKey %u\n", iDetail, iKey); 248 249 return iKey; 249 250 }
Note:
See TracChangeset
for help on using the changeset viewer.