From ea04af7b6bddaea07257532c5a7cc9f17ebb9849 Mon Sep 17 00:00:00 2001 From: = <=> Date: Thu, 22 Jul 2021 17:08:53 +0100 Subject: [PATCH] Remove unused BOUNDS type from PebbleObject --- src/pebbleobject.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pebbleobject.h b/src/pebbleobject.h index 1902d59..cc0ee4b 100644 --- a/src/pebbleobject.h +++ b/src/pebbleobject.h @@ -4,7 +4,6 @@ enum PebbleType { WINDOW, TEXT_LAYER, - BOUNDS, P_ERROR }; @@ -19,7 +18,6 @@ struct PebbleObject { union { Window *window; struct PLTextLayer *textLayer; - GRect bounds; void *ptr; }; };