aboutsummaryrefslogtreecommitdiff
path: root/dw/types.hh
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2009-11-30 19:48:43 +0000
committercorvid <corvid@lavabit.com>2009-11-30 19:48:43 +0000
commitc3457e1096d0dc1745efe62a0fb3f1337888d4a9 (patch)
treec46166af0506f7898b294e3d761bc389fe9aeaec /dw/types.hh
parenta3daa9910dfbfc0fc6b57ec37ad712fbc19b1e01 (diff)
Separate Anchors out from Words
The reason for this is that they were in the way when adding parbreaks. http://lists.auriga.wearlab.de/pipermail/dillo-dev/2009-November/007044.html
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;
};
};