diff options
author | Sebastian Geerken <devnull@localhost> | 2014-06-15 12:47:49 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-06-15 12:47:49 +0200 |
commit | 87b58bcbe2170932565218c8688985708f522ee4 (patch) | |
tree | 250a83200db6e7786db102be3453d6b304a712cd /dw/textblock.hh | |
parent | b259c9978a5101bf7044b532265c3b77108e6ff7 (diff) |
Some reorganisation of Textblock, part 1.
Diffstat (limited to 'dw/textblock.hh')
-rw-r--r-- | dw/textblock.hh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dw/textblock.hh b/dw/textblock.hh index 61c6ae9f..61e58ba2 100644 --- a/dw/textblock.hh +++ b/dw/textblock.hh @@ -334,8 +334,7 @@ protected: int contentAscent; /* ??? */ int contentDescent; /* ??? */ int breakSpace; /* Space between this line and the next one. */ - int leftOffset; /* ??? */ - int offsetCompleteWidget; /* ??? */ + int textOffset; /* ??? */ /* This is similar to descent, but includes the bottom margins of the * widgets within this line. */ @@ -361,6 +360,8 @@ protected: * even a following line, when positioned before (this is the * reason this attribute exists); see \ref dw-out-of-flow. */ int lastOofRefPositionedBeforeThisLine; + + int leftOffset, rightOffset; }; struct Word |