Rename global_display to globals.

This commit is contained in:
2025-02-09 22:14:54 -05:00
parent 3f9b61fa9d
commit e08e3058fd
5 changed files with 7 additions and 6 deletions
+3 -3
View File
@@ -7,9 +7,9 @@ cc_library(
)
cc_library(
name = "global_display",
hdrs = ["global_display.h"],
srcs = ["global_display.c"],
name = "globals",
hdrs = ["globals.h"],
srcs = ["globals.c"],
deps = ["@x11//:lib"],
)
@@ -1,5 +1,6 @@
#include "wmaker/global_display.h"
#include "wmaker/globals.h"
#include "X11/Xlib.h"
Display *dpy;
+1 -1
View File
@@ -15,7 +15,7 @@ cc_library(
srcs = ["pixmap.c"],
deps = [
":interface",
"//wmaker:global_display",
"//wmaker:globals",
"//wmaker/screen:interface",
"//wrlib",
],
+1 -1
View File
@@ -20,7 +20,7 @@
#include "wmaker/pixmap/pixmap.h"
#include "wmaker/global_display.h"
#include "wmaker/globals.h"
#include "wmaker/pixmap/interface.h"
#include "wmaker/wconfig.h"