Remove unused BOUNDS type from PebbleObject
This commit is contained in:
parent
10b2bc6938
commit
ea04af7b6b
|
@ -4,7 +4,6 @@
|
||||||
enum PebbleType {
|
enum PebbleType {
|
||||||
WINDOW,
|
WINDOW,
|
||||||
TEXT_LAYER,
|
TEXT_LAYER,
|
||||||
BOUNDS,
|
|
||||||
P_ERROR
|
P_ERROR
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -19,7 +18,6 @@ struct PebbleObject {
|
||||||
union {
|
union {
|
||||||
Window *window;
|
Window *window;
|
||||||
struct PLTextLayer *textLayer;
|
struct PLTextLayer *textLayer;
|
||||||
GRect bounds;
|
|
||||||
void *ptr;
|
void *ptr;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue