summaryrefslogtreecommitdiff
path: root/dw/types.hh
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2012-10-08 11:29:14 +0200
committerSebastian Geerken <devnull@localhost>2012-10-08 11:29:14 +0200
commitd3c0fe575e06cfce5b595ba615e885fd189cd75a (patch)
tree868feff5a0a77c5d7b60067f02b21bf31547816a /dw/types.hh
parentb51b9f79bf0f2f964507905bdeb9f38621407451 (diff)
Work on iterators: finding text works (in a temporal way).
Diffstat (limited to 'dw/types.hh')
-rw-r--r--dw/types.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/dw/types.hh b/dw/types.hh
index 61136673..bc78f406 100644
--- a/dw/types.hh
+++ b/dw/types.hh
@@ -197,14 +197,14 @@ struct Content
/** \brief widget out of flow (OOF); _this_ widget (containing
this content) is only the container (parent), but _not_
generator */
- WIDGET_OOF_CONT,
+ WIDGET_OOF_CONT = 1 << 4,
/** \brief reference to a widget out of flow (OOF); _this_
widget (containing this content) is only the generator
(parent), but _not_ container */
- WIDGET_OOF_REF = 1 << 4,
+ WIDGET_OOF_REF = 1 << 5,
- BREAK = 1 << 5,
+ BREAK = 1 << 6,
ALL = 0xff,
REAL_CONTENT = 0xff ^ (START | END),
SELECTION_CONTENT = TEXT | BREAK, // WIDGET_* must be set additionally