diff options
Diffstat (limited to 'dw/types.hh')
-rw-r--r-- | dw/types.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dw/types.hh b/dw/types.hh index ce643239..420a500f 100644 --- a/dw/types.hh +++ b/dw/types.hh @@ -189,8 +189,9 @@ struct Content TEXT = 1 << 2, WIDGET = 1 << 3, BREAK = 1 << 4, + FLOAT_REF = 1 << 6, /** \todo A bit ugly. */ ALL = 0xff, - REAL_CONTENT = 0xff ^ (START | END), + REAL_CONTENT = 0xff ^ (START | END | FLOAT_REF), SELECTION_CONTENT = TEXT | WIDGET | BREAK }; /* Content is embedded in struct Word therefore we |