forked from external/yambar
module: remove module->begin_expose()
Replace with module_begin_expose()
This commit is contained in:
parent
4c577766d1
commit
825b0a16f8
3 changed files with 6 additions and 26 deletions
6
bar.c
6
bar.c
|
@ -148,7 +148,7 @@ expose(const struct bar *_bar)
|
|||
if (e != NULL)
|
||||
e->destroy(e);
|
||||
|
||||
bar->left.exps[i] = m->begin_expose(m);
|
||||
bar->left.exps[i] = module_begin_expose(m);
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < bar->center.count; i++) {
|
||||
|
@ -158,7 +158,7 @@ expose(const struct bar *_bar)
|
|||
if (e != NULL)
|
||||
e->destroy(e);
|
||||
|
||||
bar->center.exps[i] = m->begin_expose(m);
|
||||
bar->center.exps[i] = module_begin_expose(m);
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < bar->right.count; i++) {
|
||||
|
@ -168,7 +168,7 @@ expose(const struct bar *_bar)
|
|||
if (e != NULL)
|
||||
e->destroy(e);
|
||||
|
||||
bar->right.exps[i] = m->begin_expose(m);
|
||||
bar->right.exps[i] = module_begin_expose(m);
|
||||
}
|
||||
|
||||
int left_width, center_width, right_width;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue