aboutsummaryrefslogtreecommitdiffstats
path: root/matchbox/comp-mgr/mb-wm-comp-mgr.c
diff options
context:
space:
mode:
Diffstat (limited to 'matchbox/comp-mgr/mb-wm-comp-mgr.c')
-rw-r--r--matchbox/comp-mgr/mb-wm-comp-mgr.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/matchbox/comp-mgr/mb-wm-comp-mgr.c b/matchbox/comp-mgr/mb-wm-comp-mgr.c
index 68063c3..160303f 100644
--- a/matchbox/comp-mgr/mb-wm-comp-mgr.c
+++ b/matchbox/comp-mgr/mb-wm-comp-mgr.c
@@ -134,7 +134,8 @@ mb_wm_comp_mgr_client_show (MBWMCompMgrClient * client)
}
void
-mb_wm_comp_mgr_client_configure (MBWMCompMgrClient * client)
+mb_wm_comp_mgr_client_configure (MBWMCompMgrClient * client,
+ MBGeometry * geometry)
{
MBWMCompMgrClientClass *klass;
@@ -144,7 +145,7 @@ mb_wm_comp_mgr_client_configure (MBWMCompMgrClient * client)
klass = MB_WM_COMP_MGR_CLIENT_CLASS (MB_WM_OBJECT_GET_CLASS (client));
MBWM_ASSERT (klass->configure != NULL);
- klass->configure (client);
+ klass->configure (client, geometry);
}
void