diff options
Diffstat (limited to 'generic')
-rw-r--r-- | generic/WidgetInfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/WidgetInfo.h b/generic/WidgetInfo.h index 9a4699c..63d0b62 100644 --- a/generic/WidgetInfo.h +++ b/generic/WidgetInfo.h @@ -106,7 +106,7 @@ typedef struct _WidgetInfo { /* Transformer */ ZnTransfo *current_transfo; ZnList transfo_stack; - ClipState *current_clip; + struct _ClipState *current_clip; ZnList clip_stack; /* Others */ @@ -135,7 +135,6 @@ typedef struct _WidgetInfo { ZnBool realized; Pixmap draw_buffer; /* Pixmap for double buffering */ ZnBBox damaged_area; /* The current damaged rectangle */ - Region damaged_region; GC gc; ZnBool has_x_shm; /* Tell if the SHM X11 ext is avail. */ ZnBool has_x_shape; /* Tell if she Shape X ext. is avail. */ @@ -145,7 +144,8 @@ typedef struct _WidgetInfo { Item top_group; ZnList work_item_list; /* Temporary item list used in internal * works. */ - ZnList work_pts; /* Temporary point list. */ + ZnList work_pts; /* Temporary point lists. */ + ZnList work_xpts; /* Perf measurement variables. */ ZnBool monitoring; |