add PARTIAL_SRUT_EQUAL

This commit is contained in:
Dana Jansens 2003-09-24 17:16:16 +00:00
parent 89d964d9fe
commit 00d74f3d61

View file

@ -110,6 +110,12 @@ typedef struct _StrutPartial {
(s1).bottom = MAX((s1).bottom, (s2).bottom)
#define STRUT_EQUAL(s1, s2) \
((s1).left == (s2).left && \
(s1).top == (s2).top && \
(s1).right == (s2).right && \
(s1).bottom == (s2).bottom)
#define PARTIAL_STRUT_EQUAL(s1, s2) \
((s1).left == (s2).left && \
(s1).top == (s2).top && \
(s1).right == (s2).right && \