[PATCH 1/2] window: Remove window_location enum
Jasper St. Pierre
jstpierre at mecheye.net
Mon Feb 10 10:22:34 PST 2014
It's unused except for one easily-replaceable place.
---
clients/window.c | 20 ++------------------
1 file changed, 2 insertions(+), 18 deletions(-)
diff --git a/clients/window.c b/clients/window.c
index 91c1ea0..fad4793 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -395,22 +395,6 @@ enum {
CURSOR_UNSET
};
-enum window_location {
- WINDOW_INTERIOR = 0,
- WINDOW_RESIZING_TOP = 1,
- WINDOW_RESIZING_BOTTOM = 2,
- WINDOW_RESIZING_LEFT = 4,
- WINDOW_RESIZING_TOP_LEFT = 5,
- WINDOW_RESIZING_BOTTOM_LEFT = 6,
- WINDOW_RESIZING_RIGHT = 8,
- WINDOW_RESIZING_TOP_RIGHT = 9,
- WINDOW_RESIZING_BOTTOM_RIGHT = 10,
- WINDOW_RESIZING_MASK = 15,
- WINDOW_EXTERIOR = 16,
- WINDOW_TITLEBAR = 17,
- WINDOW_CLIENT_AREA = 18,
-};
-
static const cairo_user_data_key_t shm_surface_data_key;
/* #define DEBUG */
@@ -1418,11 +1402,11 @@ window_create_main_surface(struct window *window)
if (window->preferred_format == WINDOW_PREFERRED_FORMAT_RGB565)
flags |= SURFACE_HINT_RGB565;
- if (window->resize_edges & WINDOW_RESIZING_LEFT)
+ if (window->resize_edges & THEME_LOCATION_RESIZING_LEFT)
dx = surface->server_allocation.width -
surface->allocation.width;
- if (window->resize_edges & WINDOW_RESIZING_TOP)
+ if (window->resize_edges & THEME_LOCATION_RESIZING_TOP)
dy = surface->server_allocation.height -
surface->allocation.height;
--
1.8.5.3
More information about the wayland-devel
mailing list