summaryrefslogtreecommitdiff
path: root/dw/image.cc
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2014-07-05 13:31:33 +0200
committerSebastian Geerken <devnull@localhost>2014-07-05 13:31:33 +0200
commita1502f4d3799f0b003545f4ac61e926366d91096 (patch)
treeda324a9871320602434158b63f583d014e79a2aa /dw/image.cc
parenta1b6db3ee5e3ca04d40a1ddd59670bcdcf1f8f2e (diff)
Applied new RTFL macros (ENTER, LEAVE) to image.cc and table.cc.
Diffstat (limited to 'dw/image.cc')
-rw-r--r--dw/image.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/dw/image.cc b/dw/image.cc
index 65ebcdf3..bed1ca1d 100644
--- a/dw/image.cc
+++ b/dw/image.cc
@@ -170,8 +170,7 @@ Image::~Image()
void Image::sizeRequestImpl (core::Requisition *requisition)
{
- DBG_OBJ_MSG ("resize", 0, "<b>sizeRequestImpl</b> ()");
- DBG_OBJ_MSG_START ();
+ DBG_OBJ_ENTER0 ("resize", 0, "sizeRequestImpl");
if (buffer) {
requisition->width = buffer->getRootWidth ();
@@ -213,7 +212,7 @@ void Image::sizeRequestImpl (core::Requisition *requisition)
DBG_OBJ_MSGF ("resize", 1, "=> %d * (%d + %d)",
requisition->width, requisition->ascent, requisition->descent);
- DBG_OBJ_MSG_END ();
+ DBG_OBJ_LEAVE ();
}
void Image::getExtremesImpl (core::Extremes *extremes)