Changeset 99479 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Apr 20, 2023 8:25:26 AM (20 months ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 9 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r99458 r99479 1278 1278 src/platform/darwin/UIDesktopServices_darwin_cocoa.mm 1279 1279 1280 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris) # X111280 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris) # U*nix 1281 1281 VirtualBox_SOURCES += \ 1282 src/platform/x11/UIDesktopServices_ x11.cpp1282 src/platform/x11/UIDesktopServices_nix.cpp 1283 1283 endif 1284 1284 … … 1615 1615 endif 1616 1616 1617 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris) # X111617 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris) # Un*x 1618 1618 UICommon_SOURCES += \ 1619 src/platform/x11/VBoxUtils- x11.cpp \1619 src/platform/x11/VBoxUtils-nix.cpp \ 1620 1620 src/platform/x11/XKeyboard-new.cpp 1621 1621 endif -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.h
r99438 r99479 42 42 #include "UIMediumDefs.h" 43 43 #ifdef VBOX_WS_X11 44 # include "VBoxUtils- x11.h"44 # include "VBoxUtils-nix.h" 45 45 #endif 46 46 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIDesktopWidgetWatchdog.cpp
r99438 r99479 50 50 #ifdef VBOX_WS_X11 51 51 # include "UICommon.h" 52 # include "VBoxUtils- x11.h"52 # include "VBoxUtils-nix.h" 53 53 # ifndef VBOX_GUI_WITH_CUSTOMIZATIONS1 54 54 # include "UIConverter.h" -
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r99434 r99479 75 75 # include <unistd.h> 76 76 # include <X11/Xlib.h> 77 # include "VBoxUtils- x11.h"77 # include "VBoxUtils-nix.h" 78 78 # if defined(RT_OS_LINUX) && defined(DEBUG) 79 79 # include <signal.h> -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.cpp
r99441 r99479 71 71 #ifdef VBOX_WS_X11 72 72 # include "XKeyboard.h" 73 # include "VBoxUtils- x11.h"73 # include "VBoxUtils-nix.h" 74 74 #endif 75 75 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r99435 r99479 82 82 #endif 83 83 #ifdef VBOX_WS_X11 84 # include "VBoxUtils- x11.h"84 # include "VBoxUtils-nix.h" 85 85 #endif 86 86 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.cpp
r99442 r99479 53 53 #endif 54 54 #ifdef VBOX_WS_X11 55 # include "VBoxUtils- x11.h"55 # include "VBoxUtils-nix.h" 56 56 #endif 57 57 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIDisplayFeaturesEditor.cpp
r99435 r99479 34 34 #include "UIDisplayFeaturesEditor.h" 35 35 #ifdef VBOX_WS_X11 36 # include "VBoxUtils- x11.h"36 # include "VBoxUtils-nix.h" 37 37 #endif 38 38 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIHostComboEditor.cpp
r99438 r99479 51 51 #elif defined(VBOX_WS_X11) 52 52 # include "XKeyboard.h" 53 # include "VBoxUtils- x11.h"53 # include "VBoxUtils-nix.h" 54 54 #endif 55 55
Note:
See TracChangeset
for help on using the changeset viewer.