Changeset 100063 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jun 3, 2023 5:42:36 PM (20 months ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
r99977 r100063 96 96 } 97 97 } 98 else if (VBClGetDisplayServerType() == VBGHDISPLAYSERVERTYPE_ WAYLAND)98 else if (VBClGetDisplayServerType() == VBGHDISPLAYSERVERTYPE_PURE_WAYLAND) 99 99 { 100 100 VBClLogError("Shared Clipboard for Wayland not supported yet!\n"); -
trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp
r99620 r100063 581 581 } 582 582 583 if (VBClGetDisplayServerType() == VBGHDISPLAYSERVERTYPE_ WAYLAND)583 if (VBClGetDisplayServerType() == VBGHDISPLAYSERVERTYPE_PURE_WAYLAND) 584 584 { 585 585 rc = VbglR3DrmClientStart(); -
trunk/src/VBox/Additions/x11/VBoxClient/draganddrop.cpp
r99620 r100063 48 48 break; 49 49 50 case VBGHDISPLAYSERVERTYPE_ WAYLAND:50 case VBGHDISPLAYSERVERTYPE_PURE_WAYLAND: 51 51 RT_FALL_THROUGH(); 52 52 default: -
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r99689 r100063 693 693 g_enmDisplayServerType = VBGHDISPLAYSERVERTYPE_X11; 694 694 else if (!RTStrICmp(ValueUnion.psz, "wayland")) 695 g_enmDisplayServerType = VBGHDISPLAYSERVERTYPE_ WAYLAND;695 g_enmDisplayServerType = VBGHDISPLAYSERVERTYPE_PURE_WAYLAND; 696 696 else if (!RTStrICmp(ValueUnion.psz, "none")) 697 697 g_enmDisplayServerType = VBGHDISPLAYSERVERTYPE_NONE; -
trunk/src/VBox/Additions/x11/VBoxClient/seamless.cpp
r99620 r100063 90 90 break; 91 91 92 case VBGHDISPLAYSERVERTYPE_ WAYLAND:92 case VBGHDISPLAYSERVERTYPE_PURE_WAYLAND: 93 93 RT_FALL_THROUGH(); 94 94 default:
Note:
See TracChangeset
for help on using the changeset viewer.