diff options
author | Sebastian Geerken <devnull@localhost> | 2014-09-18 12:41:53 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-09-18 12:41:53 +0200 |
commit | 0552cad5ee37dacf33559fe4db4d4cde7f4fca76 (patch) | |
tree | 5cb8c06dff8a4b5413a67d503695c793af3e160e | |
parent | 09f2d8f0afbb905fb5b45714ead2c7151ad3103d (diff) |
Fixed RTFL messages.
-rw-r--r-- | dw/stackingcontextmgr.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dw/stackingcontextmgr.cc b/dw/stackingcontextmgr.cc index 05c9c5b2..333f0707 100644 --- a/dw/stackingcontextmgr.cc +++ b/dw/stackingcontextmgr.cc @@ -77,17 +77,17 @@ void StackingContextMgr::draw (View *view, Rectangle *area, int startZIndex, int endZIndex) { DBG_OBJ_ENTER ("draw", 0, "draw", "[%d, %d, %d * %d], %d, %d", - area->x, area->y, area->width, area->height. startZIndex, + area->x, area->y, area->width, area->height, startZIndex, endZIndex); for (int zIndex = max (minZIndex, startZIndex); zIndex <= min (maxZIndex, endZIndex); zIndex++) { - DBG_OBJ_MSGF ("draw", 1, "draw", "drawing zIndex = %d", zIndex); + DBG_OBJ_MSGF ("draw", 1, "drawing zIndex = %d", zIndex); DBG_OBJ_MSG_START (); for (int i = 0; i < scWidgets->size (); i++) { Widget *child = scWidgets->get (i); - DBG_OBJ_MSGF ("draw", 2, "draw", "widget %p has zIndex = %d", + DBG_OBJ_MSGF ("draw", 2, "widget %p has zIndex = %d", child, child->getStyle()->zIndex); Rectangle childArea; if (child->getStyle()->zIndex == zIndex && |