summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Ådahl <jadahl@gmail.com>2016-03-15 14:06:26 +0800
committerJonas Ådahl <jadahl@gmail.com>2016-04-22 10:31:21 +0800
commit10257ee5d9174014a1e776ae2710120f8951b968 (patch)
tree4d8a4d33c72d8900c276befc946cd130c867ea8a
parentd3a3ee980d58d826c0c0122f9661066cd760a77e (diff)
desktop-shell: Get rid of some unused fields
Signed-off-by: Jonas Ådahl <jadahl@gmail.com> Reviewed-by: Mike Blumenkrantz <zmike@osg.samsung.com>
-rw-r--r--desktop-shell/shell.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/desktop-shell/shell.c b/desktop-shell/shell.c
index f705c994..cd269a8f 100644
--- a/desktop-shell/shell.c
+++ b/desktop-shell/shell.c
@@ -124,9 +124,7 @@ struct shell_surface {
enum shell_surface_type type;
char *title, *class;
int32_t saved_x, saved_y;
- int32_t saved_width, saved_height;
bool saved_position_valid;
- bool saved_size_valid;
bool saved_rotation_valid;
int unresponsive, grabbed;
uint32_t resize_edges;
@@ -2704,9 +2702,6 @@ set_full_output(struct shell_surface *shsurf)
{
shsurf->saved_x = shsurf->view->geometry.x;
shsurf->saved_y = shsurf->view->geometry.y;
- shsurf->saved_width = shsurf->surface->width;
- shsurf->saved_height = shsurf->surface->height;
- shsurf->saved_size_valid = true;
shsurf->saved_position_valid = true;
if (!wl_list_empty(&shsurf->rotation.transform.link)) {
@@ -3705,7 +3700,6 @@ create_common_surface(struct shell_client *owner, void *shell,
shsurf->shell = (struct desktop_shell *) shell;
shsurf->unresponsive = 0;
shsurf->saved_position_valid = false;
- shsurf->saved_size_valid = false;
shsurf->saved_rotation_valid = false;
shsurf->surface = surface;
shsurf->fullscreen.type = WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT;