Increased verbosity.
This commit is contained in:
@@ -13,6 +13,8 @@
|
|||||||
#include "o_hlayout.h"
|
#include "o_hlayout.h"
|
||||||
#include "o_layout.h"
|
#include "o_layout.h"
|
||||||
|
|
||||||
|
#include <gwenhywfar/debug.h>
|
||||||
|
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
* forward declarations
|
* forward declarations
|
||||||
@@ -52,10 +54,12 @@ int _layout(AQDG_OBJECT *object)
|
|||||||
{
|
{
|
||||||
int num;
|
int num;
|
||||||
|
|
||||||
|
DBG_ERROR(NULL, "Layout");
|
||||||
num=AQDG_LayoutObject_CountDirectChildren(object);
|
num=AQDG_LayoutObject_CountDirectChildren(object);
|
||||||
if (num) {
|
if (num) {
|
||||||
AQDG_PLACEMENT_LAYOUT_ELEMENT *elements;
|
AQDG_PLACEMENT_LAYOUT_ELEMENT *elements;
|
||||||
|
|
||||||
|
DBG_ERROR(NULL, "Layout1");
|
||||||
AQDG_LayoutObject_SetChildrenWidths(object);
|
AQDG_LayoutObject_SetChildrenWidths(object);
|
||||||
elements=AQDG_LayoutObject_Children2ElementsX(object, num);
|
elements=AQDG_LayoutObject_Children2ElementsX(object, num);
|
||||||
if (elements) {
|
if (elements) {
|
||||||
@@ -68,6 +72,7 @@ int _layout(AQDG_OBJECT *object)
|
|||||||
free(elements);
|
free(elements);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DBG_ERROR(NULL, "Layout2");
|
||||||
AQDG_LayoutObject_SetChildrenHeights(object);
|
AQDG_LayoutObject_SetChildrenHeights(object);
|
||||||
elements=AQDG_LayoutObject_Children2ElementsY(object, num);
|
elements=AQDG_LayoutObject_Children2ElementsY(object, num);
|
||||||
if (elements) {
|
if (elements) {
|
||||||
@@ -78,6 +83,7 @@ int _layout(AQDG_OBJECT *object)
|
|||||||
AQDG_LayoutObject_ChildrenFromElementsY(object, elements, num);
|
AQDG_LayoutObject_ChildrenFromElementsY(object, elements, num);
|
||||||
free(elements);
|
free(elements);
|
||||||
}
|
}
|
||||||
|
DBG_ERROR(NULL, "Layout3");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user