aboutsummaryrefslogtreecommitdiff
path: root/generic/Group.c
diff options
context:
space:
mode:
authorlecoanet2002-06-24 09:06:23 +0000
committerlecoanet2002-06-24 09:06:23 +0000
commit57d0b8420a7f829c0423511a4c7951f40f1f2fdc (patch)
tree80a4b2bf786e777caaaca39254dd5be6538ec853 /generic/Group.c
parentcbeda314ef53aafe1815f5d47fd3ce1e563bebff (diff)
downloadtkzinc-57d0b8420a7f829c0423511a4c7951f40f1f2fdc.zip
tkzinc-57d0b8420a7f829c0423511a4c7951f40f1f2fdc.tar.gz
tkzinc-57d0b8420a7f829c0423511a4c7951f40f1f2fdc.tar.bz2
tkzinc-57d0b8420a7f829c0423511a4c7951f40f1f2fdc.tar.xz
* (IsSensitive): La sensibilit� des groupes parents n'�tait
pas prise en compte dans le r�sultat suite � une typo.
Diffstat (limited to 'generic/Group.c')
-rw-r--r--generic/Group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/Group.c b/generic/Group.c
index 201fc11..d2908e7 100644
--- a/generic/Group.c
+++ b/generic/Group.c
@@ -1066,7 +1066,7 @@ IsSensitive(Item item,
Item parent = item->parent;
while (sensitive && (parent != ZN_NO_ITEM)) {
- sensitive &= ISSET(item->flags, SENSITIVE_BIT);
+ sensitive &= ISSET(parent->flags, SENSITIVE_BIT);
parent = parent->parent;
}
return sensitive;