diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2010-08-20 20:27:07 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2010-08-20 20:27:07 +0200 |
commit | e98d02a01ffeb18ede86af025e51ae1ec011c75a (patch) | |
tree | f8b2efbec989335bf2a56b73fcf485f4cd1a01c6 /dw/types.hh | |
parent | ce8e972a10c9340312f21511de053242dad3f5db (diff) |
import float prototype and test program by Sebastian Geerken
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 bdfca629..cd35e1f6 100644 --- a/dw/types.hh +++ b/dw/types.hh @@ -181,8 +181,9 @@ struct Content WIDGET = 1 << 3, ANCHOR = 1 << 4, BREAK = 1 << 5, + 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 |