diff options
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); } |