diff options
author | Sebastian Geerken <devnull@localhost> | 2014-06-15 22:49:40 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-06-15 22:49:40 +0200 |
commit | daddb8ad44abc1a1362d20341c80e187cb157a68 (patch) | |
tree | 685dafd1f88957f16d8330527ffe4d6a6c2e602d | |
parent | 2906783bbee9b7b055ef4bedf153f93ce2a9af59 (diff) |
Corrected RTFL message for last correction.
-rw-r--r-- | dw/outofflowmgr.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/dw/outofflowmgr.cc b/dw/outofflowmgr.cc index d35625d2..9cb3fc36 100644 --- a/dw/outofflowmgr.cc +++ b/dw/outofflowmgr.cc @@ -1925,10 +1925,9 @@ int OutOfFlowMgr::getBorder (Textblock *textblock, Side side, int y, int h, thisBorder = tba->x + textblock->getLineBreakWidth () - fla->x; DBG_OBJ_MSGF ("border", 1, - "not GB: thisBorder = %d + min (%d, %d) - %d " + "not GB: thisBorder = %d + %d - %d " "= %d", - tba->x, tba->width, - textblock->getLineBreakWidth (), fla->x, + tba->x, textblock->getLineBreakWidth (), fla->x, thisBorder); } } |