aboutsummaryrefslogtreecommitdiff
path: root/generic/Item.h
diff options
context:
space:
mode:
authorlecoanet2004-02-20 15:58:59 +0000
committerlecoanet2004-02-20 15:58:59 +0000
commit2a35f5d4ab6964b1b7047980f05474be4685aa78 (patch)
tree21ac7bca4224323fd8ed9bd10fc979af7e5d4017 /generic/Item.h
parentc8cd63272afc32a07221e660f412be7594aa53c7 (diff)
downloadtkzinc-2a35f5d4ab6964b1b7047980f05474be4685aa78.zip
tkzinc-2a35f5d4ab6964b1b7047980f05474be4685aa78.tar.gz
tkzinc-2a35f5d4ab6964b1b7047980f05474be4685aa78.tar.bz2
tkzinc-2a35f5d4ab6964b1b7047980f05474be4685aa78.tar.xz
ZN_MAP_INFO_FLAG and ZN_LAYOUT_FLAG shared the same bit
in the bit field, they are now distinct (this should not have caused a bug as they are not used simultaneously).
Diffstat (limited to 'generic/Item.h')
-rw-r--r--generic/Item.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/Item.h b/generic/Item.h
index af7bbd7..b9367f5 100644
--- a/generic/Item.h
+++ b/generic/Item.h
@@ -105,12 +105,12 @@ typedef struct _ZnAttrConfig {
#define ZN_VIS_FLAG 1 << 7 /* Visibility has changed. */
#define ZN_MOVED_FLAG 1 << 8 /* Item has moved. */
#define ZN_ITEM_FLAG 1 << 9 /* Signal a change in an item type attribute. */
-#define ZN_MAP_INFO_FLAG 1 << 10 /* Update mapinfo pointer. */
-#define ZN_LAYOUT_FLAG 1 << 10 /* A layout need update. */
-#define ZN_POLAR_FLAG 1 << 11 /* Signal a cartesian to polar change. */
-#define ZN_CARTESIAN_FLAG 1 << 12 /* Signal a polar to cartesian change. */
-#define ZN_TILE_FLAG 1 << 13 /* Update tile pointer. */
-#define ZN_WINDOW_FLAG 1 << 14 /* Signal a change in a window type attribute. */
+#define ZN_MAP_INFO_FLAG 1 << 10/* Update mapinfo pointer. */
+#define ZN_LAYOUT_FLAG 1 << 11 /* A layout need update. */
+#define ZN_POLAR_FLAG 1 << 12 /* Signal a cartesian to polar change. */
+#define ZN_CARTESIAN_FLAG 1 << 13 /* Signal a polar to cartesian change. */
+#define ZN_TILE_FLAG 1 << 14 /* Update tile pointer. */
+#define ZN_WINDOW_FLAG 1 << 15 /* Signal a change in a window type attribute. */
/*