diff options
author | Sebastian Geerken <devnull@localhost> | 2012-12-08 22:21:55 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2012-12-08 22:21:55 +0100 |
commit | 7a47cd331d30a780e7437b77aeb994c8ed2061b8 (patch) | |
tree | bc74d5bece41c29f2c78e559b53361b9169d0b8c /dw/textblock.cc | |
parent | a6a78074bfe343a3e2362247131ac0c69521a245 (diff) |
Fixed a problem with realloc.
Diffstat (limited to 'dw/textblock.cc')
-rw-r--r-- | dw/textblock.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dw/textblock.cc b/dw/textblock.cc index 3f68cdcc..ba000e1a 100644 --- a/dw/textblock.cc +++ b/dw/textblock.cc @@ -292,7 +292,7 @@ void Textblock::getWordExtremes (Word *word, core::Extremes *extremes) void Textblock::getExtremesImpl (core::Extremes *extremes) { - PRINTF ("[%p] GET_EXTREMES: ...\n", this); + PRINTF ("[%p] GET_EXTREMES ...\n", this); fillParagraphs (); @@ -310,7 +310,8 @@ void Textblock::getExtremesImpl (core::Extremes *extremes) extremes->minWidth += diff; extremes->maxWidth += diff; - PRINTF ("=> %d / %d\n", extremes->minWidth, extremes->maxWidth); + PRINTF ("[%p] GET_EXTREMES => %d / %d\n", + this, extremes->minWidth, extremes->maxWidth); } |