aboutsummaryrefslogtreecommitdiff
path: root/dw/types.hh
diff options
context:
space:
mode:
Diffstat (limited to 'dw/types.hh')
-rw-r--r--dw/types.hh4
1 files changed, 1 insertions, 3 deletions
diff --git a/dw/types.hh b/dw/types.hh
index d21d58a2..a0f862e6 100644
--- a/dw/types.hh
+++ b/dw/types.hh
@@ -179,8 +179,7 @@ struct Content
END = 1 << 1,
TEXT = 1 << 2,
WIDGET = 1 << 3,
- ANCHOR = 1 << 4,
- BREAK = 1 << 5,
+ BREAK = 1 << 4,
ALL = 0xff,
REAL_CONTENT = 0xff ^ (START | END),
SELECTION_CONTENT = TEXT | WIDGET | BREAK
@@ -193,7 +192,6 @@ struct Content
union {
const char *text;
Widget *widget;
- char *anchor;
int breakSpace;
};
};