- Timestamp:
- Jun 15, 2010, 12:09:25 AM (14 years ago)
- Branches:
- master, release-1.10, release-1.7, release-1.8, release-1.9
- Children:
- 95d54e6
- Parents:
- 1aa4cc4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
window.c
r1aa4cc4 r33b64f22 215 215 func(w, user_data); 216 216 } 217 }218 219 gboolean owl_window_has_children(owl_window *parent)220 {221 return parent->child != NULL;222 }223 224 int owl_window_num_children(owl_window *parent)225 {226 owl_window *w;227 int num = 0;228 for (w = parent->child;229 w != NULL;230 w = w->next) {231 num++;232 }233 return num;234 217 } 235 218
Note: See TracChangeset
for help on using the changeset viewer.